/* ============================================================
   DIXIRA — Main Stylesheet  v1.0.1
   Design: Navy #0b1220 / Gold #c9a84c
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Responsive: 1200px desktop → 768px tablet → 480px mobile
   ============================================================

   TABLE OF CONTENTS
   ──────────────────────────────────────────────────────────
    1.  CUSTOM PROPERTIES  ← Change colors & fonts HERE
    2.  RESET & BASE
    3.  ICONS
    4.  TYPOGRAPHY
    5.  LAYOUT
    6.  BUTTONS
    7.  NAVIGATION
    8.  HERO
    9.  SERVICES
   10.  WHY CHOOSE US
   11.  PROCESS
   12.  CONTACT / FORM
   13.  CTA BAND
   14.  FOOTER
   15.  SERVICE PAGE STYLES
   16.  LEGAL PAGE
   17.  ANIMATIONS
   18.  RESPONSIVE — TABLET  (max-width: 1100px)
   19.  RESPONSIVE — MOBILE  (max-width: 768px)
   20.  RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ──────────────────────────────────────────────────────────
*/

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --navy:         #0b1220;
  --navy-mid:     #111d30;
  --navy-light:   #1a2d47;
  --gold:         #c9a84c;
  --gold-light:   #e2c177;
  --gold-pale:    #f5e9c8;
  --white:        #ffffff;
  --text-light:   #c4ccd8;
  --text-muted:   #8fa3b8;   /* raised from #7a8899 for better contrast */
  --border:       rgba(201,168,76,.2);
  --glass:        rgba(255,255,255,.04);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --section-pad:  clamp(4rem, 8vw, 9rem);
  --radius:       4px;
  --radius-lg:    12px;
  --ease:         0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ----------------------------------------------------------
   3. ICONS
   ---------------------------------------------------------- */
.ic {
  display: inline-flex; align-items: center; justify-content: center;
  fill: none; stroke: currentColor; vertical-align: middle; flex-shrink: 0;
}
.ic-sm { width: 14px; height: 14px; }
.ic-md { width: 20px; height: 20px; }
.ic-lg { width: 24px; height: 24px; }

/* ----------------------------------------------------------
   4. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p  { font-size: clamp(0.93rem, 1.5vw, 1.05rem); }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.s-title   { color: var(--white); margin-bottom: 1.2rem; }
.s-sub     { color: var(--text-light); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 56ch; line-height: 1.75; }

/* ----------------------------------------------------------
   5. LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 5vw, 2.5rem);
}

/* ----------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; letter-spacing: .05em;
  transition: var(--ease); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-101%); transition: transform .4s ease;
}
.btn-primary:hover::after  { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg  { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ----------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------- */

/* ── Core nav shell ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1.4rem 0;
  transition: background .4s ease, padding .35s ease, box-shadow .4s ease;
}
.nav.on {
  background: rgba(11,18,32,.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: .85rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,.18), 0 4px 32px rgba(0,0,0,.35);
}

/* ── 3-column grid: logo | links | cta ── */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* ── Logo ── */
.logo {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 700;
  color: var(--white); letter-spacing: .06em;
  white-space: nowrap; text-decoration: none;
  transition: opacity .2s;
  justify-self: start;
}
.logo span { color: var(--gold); }
.logo:hover { opacity: .85; }

/* ── Desktop nav links (center column) ── */
.nav-links {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
  gap: .25rem;
}

.nav-item { position: relative; list-style: none; }

.nav-link {
  display: inline-flex; align-items: center;
  padding: .55rem .85rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .035em;
  color: var(--text-light); white-space: nowrap; text-decoration: none;
  border-radius: 6px;
  transition: color .22s, background .22s;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-item.current > .nav-link { color: var(--gold); background: rgba(201,168,76,.07); }

/* ── Services trigger button ── */
.nav-trigger {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .85rem;
  font-family: var(--font-body); font-size: .875rem; font-weight: 500; letter-spacing: .035em;
  color: var(--text-light); white-space: nowrap;
  background: none; border: none; cursor: pointer; border-radius: 6px;
  transition: color .22s, background .22s;
}
.nav-trigger:hover,
.nav-trigger:focus-visible,
.has-drop.drop-open .nav-trigger { color: var(--gold); background: rgba(201,168,76,.07); }

.drop-chevron {
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.has-drop.drop-open .drop-chevron { transform: rotate(180deg); }

/* ── Dropdown panel ── */
.drop-panel {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 560px;
  background: rgba(13,22,40,.98);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem;
  z-index: 1000;
  /* animation */
  opacity: 0; pointer-events: none;
  transition: opacity .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.4,0,.2,1);
}
.has-drop.drop-open .drop-panel {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* arrow tip */
.drop-panel::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(13,22,40,.98);
  border-left: 1px solid rgba(201,168,76,.15);
  border-top: 1px solid rgba(201,168,76,.15);
  rotate: 45deg;
}

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

.drop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .9rem;
  margin-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.drop-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
}
.drop-all {
  font-size: .78rem; font-weight: 600; color: var(--text-muted); text-decoration: none;
  transition: color .2s;
}
.drop-all:hover { color: var(--gold); }

.drop-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}

.drop-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem .85rem;
  border-radius: 9px;
  text-decoration: none;
  transition: background .2s;
}
.drop-item:hover { background: rgba(201,168,76,.09); }
.drop-item:hover .drop-icon { color: var(--gold); background: rgba(201,168,76,.18); }

.drop-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
  transition: color .2s, background .2s;
}

.drop-text {
  display: flex; flex-direction: column; gap: .1rem; min-width: 0;
}
.drop-text strong {
  font-size: .85rem; font-weight: 600; color: var(--white);
  white-space: nowrap; line-height: 1.2;
}
.drop-text em {
  font-style: normal; font-size: .73rem; color: var(--text-muted); line-height: 1.2;
}

/* ── Right column: CTA + hamburger ── */
.nav-right {
  display: flex; align-items: center; gap: .75rem;
  justify-self: end;
}

.nav-cta {
  padding: .6rem 1.3rem; font-size: .875rem;
  white-space: nowrap; flex-shrink: 0;
}

/* ── Hamburger ── */
.hbg {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hbg span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: var(--ease); transform-origin: center;
}
.hbg.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mob-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(5,10,20,.7); backdrop-filter: blur(4px);
  z-index: 997;
}
.mob-backdrop.on { display: block; }

.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--navy-mid);
  border-left: 1px solid rgba(201,168,76,.12);
  z-index: 998;
  display: flex; flex-direction: column;
  padding: 0;
  /* start hidden */
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-menu.on { transform: translateX(0); }

.mob-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mob-logo { font-size: 1.6rem; }

.hbg-close { display: flex; }

.mob-nav {
  display: flex; flex-direction: column;
  padding: 1rem 0;
  flex: 1;
}

.mob-link {
  display: block;
  padding: .85rem 1.5rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500;
  color: var(--text-light); text-decoration: none;
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
}
.mob-link:hover { color: var(--gold); background: rgba(201,168,76,.05); border-left-color: var(--gold); }

/* Services accordion */
.mob-accordion { border-bottom: 1px solid rgba(255,255,255,.06); }

.mob-acc-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .85rem 1.5rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500;
  color: var(--text-light);
  background: none; border: none; cursor: pointer; text-align: left;
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.mob-acc-trigger:hover,
.mob-acc-trigger[aria-expanded="true"] { color: var(--gold); background: rgba(201,168,76,.05); border-left-color: var(--gold); }

.mob-acc-chevron { flex-shrink: 0; transition: transform .3s ease; }
.mob-acc-trigger[aria-expanded="true"] .mob-acc-chevron { transform: rotate(180deg); }

.mob-acc-panel { overflow: hidden; transition: height .32s cubic-bezier(.4,0,.2,1); }

.mob-sub-link {
  padding-left: 2.4rem;
  font-size: .875rem;
  color: var(--text-muted);
  border-left: none;
}
.mob-sub-link:hover { color: var(--gold-light); background: rgba(201,168,76,.04); border-left: none; }

.mob-cta {
  margin: 1.5rem 1.5rem 2rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   8. HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 6vw, 6rem);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(26,45,71,.8) 0%, transparent 60%),
              linear-gradient(165deg, var(--navy) 0%, #0d1826 50%, #0b1220 100%);
}
.hero-pattern {
  position: absolute; right: -5%; top: 0; bottom: 0; width: 55%; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
                    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-deco {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(10rem, 25vw, 32rem);
  font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.08);
  line-height: 1; pointer-events: none; user-select: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; animation: fadeUp .7s ease both; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.5s ease infinite; flex-shrink: 0; }
.hero-badge-txt { font-size: .78rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; animation: fadeUp .7s .15s ease both; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  color: var(--text-light); font-size: clamp(.95rem, 1.8vw, 1.2rem);
  line-height: 1.75; margin-bottom: 2.8rem; max-width: 52ch;
  animation: fadeUp .7s .3s ease both;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .45s ease both; }

/* trust bar */
.trust {
  display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeUp .7s .6s ease both;
}
.trust-item { display: flex; flex-direction: column; min-width: 0; }
.trust-num  { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-lbl  { font-size: .75rem; color: var(--text-muted); margin-top: 4px; line-height: 1.35; max-width: 14ch; }
.trust-div  { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; align-self: center; }

/* ----------------------------------------------------------
   9. SERVICES
   ---------------------------------------------------------- */
.services { padding: var(--section-pad) 0; background: var(--navy-mid); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.svc-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.svc-intro { color: var(--text-light); line-height: 1.8; }

.svc-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5px; }
.svc-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.scard { background: var(--navy-mid); padding: clamp(1.6rem,3vw,2.8rem); transition: background var(--ease); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.scard::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.scard:hover { background: var(--navy-light); }
.scard:hover::before { transform: scaleX(1); }
.scard-icon { width: 52px; height: 52px; border-radius: 10px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--gold); transition: var(--ease); }
.scard:hover .scard-icon { background: rgba(201,168,76,.2); transform: scale(1.05); }
.scard-num  { font-family: var(--font-display); font-size: .75rem; letter-spacing: .15em; color: var(--gold); opacity: .6; margin-bottom: .7rem; display: block; }
.scard h3   { font-size: 1.25rem; margin-bottom: .8rem; color: var(--white); }
.scard p    { color: var(--text-muted); font-size: .9rem; line-height: 1.7; flex: 1; }
.scard-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.scard-tag  { font-size: .72rem; font-weight: 500; padding: .25rem .65rem; border-radius: 50px; background: rgba(201,168,76,.1); color: var(--gold-light); border: 1px solid rgba(201,168,76,.15); }
.scard-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.5rem; font-size: .83rem; font-weight: 600; color: var(--gold); letter-spacing: .05em; transition: gap .25s; }
.scard:hover .scard-link { gap: .7rem; }

/* ----------------------------------------------------------
   10. WHY CHOOSE US
   ---------------------------------------------------------- */
.why { padding: var(--section-pad) 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-visual { position: relative; }
.why-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; position: relative;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.why-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 20px 40px rgba(201,168,76,.3);
}
.why-badge span { font-size: 2.5rem; display: block; font-weight: 700; }
.why-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  transition: var(--ease);
}
.why-item:hover { background: rgba(201,168,76,.06); border-color: rgba(201,168,76,.2); }
.why-ico { flex-shrink: 0; width: 36px; height: 36px; background: rgba(201,168,76,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-body h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.why-body p  { font-size: .85rem; color: var(--text-muted); }

/* ----------------------------------------------------------
   11. PROCESS
   ---------------------------------------------------------- */
.process { padding: var(--section-pad) 0; background: var(--navy-mid); position: relative; overflow: hidden; }
.process::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.proc-hdr { text-align: center; margin-bottom: 4.5rem; }
.proc-hdr .s-sub { margin: 0 auto; }
.proc-steps { display: grid; grid-template-columns: repeat(3,1fr); position: relative; gap: 2rem; }
.proc-steps::before {
  content: ''; position: absolute; top: 60px; left: 16.66%; right: 16.66%; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.3) 50%, var(--gold) 100%);
}
.proc-step { text-align: center; padding: 0 1rem; }
.proc-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold);
  position: relative; z-index: 2; transition: var(--ease);
}
.proc-step:hover .proc-num { background: var(--gold); color: var(--navy); box-shadow: 0 0 0 12px rgba(201,168,76,.1); }
.proc-step h3   { font-size: 1.4rem; margin-bottom: .8rem; color: var(--white); }
.proc-step p    { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.proc-note      { font-size: .8rem; font-style: italic; color: var(--gold); margin-top: .8rem; opacity: .8; }

/* ----------------------------------------------------------
   12. CONTACT / FORM
   ---------------------------------------------------------- */
.contact { padding: var(--section-pad) 0; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-side { position: sticky; top: 100px; }
.contact-side .s-sub { margin-bottom: 2rem; }
.cinfo { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.cinfo-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--glass); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); }
.cinfo-ico  { color: var(--gold); flex-shrink: 0; display: flex; }
.cinfo-txt  { font-size: .88rem; color: var(--text-light); }
.cinfo-txt a { color: var(--gold-light); }
.cinfo-txt a:hover { text-decoration: underline; }

/* form card */
.fcard { background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem); }
.ftitle  { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.fsub    { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.fsec    { font-size: .73rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 2rem 0 1rem; display: block; }
.fgrid   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg      { display: flex; flex-direction: column; gap: .5rem; }
.fg-full { grid-column: 1 / -1; }
.fg label { font-size: .82rem; font-weight: 600; color: var(--text-light); letter-spacing: .03em; }
.fg label span { color: var(--text-muted); font-weight: 400; }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: .8rem 1rem;
  color: var(--white); font-size: .9rem; width: 100%;
  transition: border-color .25s, box-shadow .25s; outline: none;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: rgba(201,168,76,.04);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.2); }
.fg select option { background: var(--navy-mid); color: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }

/* budget card selector */
.budget-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .5rem; }
.budget-card  { display: block; cursor: pointer; position: relative; }
.budget-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.budget-label {
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1.1rem; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  font-size: .87rem; color: var(--text-light);
  transition: border-color .25s, background .25s, color .2s;
  user-select: none; min-height: 52px;   /* touch target */
}
.budget-label:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.04); color: var(--white); }
.budget-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.budget-check::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid var(--navy); border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0; transition: opacity .15s;
}
.budget-card.selected .budget-label { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.budget-card.selected .budget-check { background: var(--gold); border-color: var(--gold); }
.budget-card.selected .budget-check::after { opacity: 1; }
.budget-cards.error .budget-label { border-color: rgba(239,68,68,.5); }

/* consent */
.consent { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.consent input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--gold); margin-top: 2px; }
.consent span  { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }
.consent a     { color: var(--gold-light); text-decoration: underline; }

/* submit */
.fsend {
  width: 100%; margin-top: 1.5rem; padding: 1.05rem;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: 1rem; font-weight: 700; letter-spacing: .03em;
  transition: var(--ease); cursor: pointer; border: none;
}
.fsend:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,168,76,.35); }
.fsend:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* messages */
.fmsg { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius); margin-top: 1.2rem; font-size: .9rem; font-weight: 500; text-align: center; }
.fmsg-ok  { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.fmsg-err { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #fca5a5; }

/* ----------------------------------------------------------
   13. CTA BAND
   ---------------------------------------------------------- */
.cta-band {
  padding: clamp(4rem,8vw,6rem) 0;
  background: var(--navy-mid); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2  { color: var(--white); margin-bottom: 1rem; }
.cta-band > .container > p { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-band__tel { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 2rem; font-weight: 600; }
.cta-band__acts { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ----------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------- */
.footer { background: #070d16; padding: clamp(3rem,5vw,4rem) 0 0; border-top: 1px solid rgba(201,168,76,.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo { font-size: 1.7rem; margin-bottom: .8rem; display: block; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 28ch; margin-bottom: 1.5rem; }
.fsocial { display: flex; gap: .7rem; }
.fsocial a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--ease);
}
.fsocial a:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold); }
.fcol h5 { font-size: .73rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.fcol ul { display: flex; flex-direction: column; gap: .65rem; }
.fcol ul li a { font-size: .86rem; color: var(--text-muted); transition: color .2s; }
.fcol ul li a:hover { color: var(--white); }
.fcontact-row { display: flex; align-items: flex-start; gap: .7rem; font-size: .86rem; color: var(--text-muted); margin-bottom: .8rem; line-height: 1.5; }
.fcontact-row .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fcontact-row a { color: var(--gold-light); }
.footer-bot { border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bot p { font-size: .8rem; color: var(--text-muted); }
.flegal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.flegal a { font-size: .8rem; color: var(--text-muted); transition: color .2s; }
.flegal a:hover { color: var(--gold); }

/* ----------------------------------------------------------
   15. SERVICE PAGE STYLES
   ---------------------------------------------------------- */
.svc-hero {
  padding: clamp(8rem,12vw,11rem) 0 clamp(4rem,6vw,6rem);
  background: var(--navy-mid); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.svc-pattern {
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
                    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

.sec-content { padding: var(--section-pad) 0; }
.sec-alt { background: var(--navy-mid); }
.sec-mid { background: var(--navy); }
.g2  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.g2r { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; direction: rtl; }
.g2r > * { direction: ltr; }

.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.benefit-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem; transition: var(--ease);
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,168,76,.1); }
.benefit-icon { width: 44px; height: 44px; background: rgba(201,168,76,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1rem; }
.benefit-card h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.benefit-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

.step-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num  { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,168,76,.1); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.step-body h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.step-body p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.checklist { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.check-item { display: flex; align-items: flex-start; gap: .8rem; font-size: .92rem; color: var(--text-light); }
.check-item::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

.info-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }

.cta-sect {
  padding: clamp(4rem,7vw,5rem) 0; background: var(--navy-light);
  text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-sect h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.cta-sect p  { color: var(--text-light); margin-bottom: 2rem; }
.cta-sect-acts { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ----------------------------------------------------------
   16. LEGAL PAGE
   ---------------------------------------------------------- */
.legal-hero {
  padding: clamp(8rem,12vw,11rem) 0 3rem;
  background: var(--navy-mid); border-bottom: 1px solid var(--border);
}
.legal-content {
  padding: clamp(3rem,6vw,5rem) 0;
  background: var(--navy);
  max-width: 800px; margin: 0 auto;
}
.legal-content h2 { font-size: clamp(1.4rem,2.5vw,2rem); color: var(--white); margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: clamp(1.1rem,2vw,1.4rem); color: var(--white); margin: 2rem 0 .8rem; }
.legal-content p  { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8; }
.legal-content ul { color: var(--text-light); padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-content ul li { margin-bottom: .5rem; list-style: disc; }
.legal-content a  { color: var(--gold-light); text-decoration: underline; }

/* ----------------------------------------------------------
   17. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse  { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.6);} 50%{box-shadow:0 0 0 8px rgba(201,168,76,0);} }
@keyframes spin   { to { transform:rotate(360deg); } }

.reveal { opacity:0; transform:translateY(30px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; } .d2 { transition-delay:.2s; } .d3 { transition-delay:.3s; }
.spinner { width:18px;height:18px;border:2px solid rgba(11,18,32,.3);border-top-color:var(--navy);border-radius:50%;animation:spin .7s linear infinite;display:inline-block;vertical-align:middle; }

/* ----------------------------------------------------------
   18. RESPONSIVE — TABLET (max-width: 1100px)
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .svc-hdr    { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: block; margin-bottom: 1rem; }
  .why-badge  { position: static; display: inline-flex; flex-direction: column; margin-top: 2rem; border-radius: var(--radius-lg); }   /* keep badge visible, reflow inline */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-side { position: static; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .g2, .g2r    { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------
   19. RESPONSIVE — MOBILE (max-width: 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  /* nav — hide desktop links, show hamburger */
  .nav-links, .nav-cta { display: none; }
  .hbg { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }

  /* hero */
  .hero-deco  { display: none; }
  .hero-pattern { width: 100%; opacity: .02; }
  .trust-num  { font-size: 1.5rem; }

  /* services */
  .svc-grid, .svc-grid-2 { grid-template-columns: 1fr; }

  /* process */
  .proc-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .proc-steps::before { display: none; }
  .proc-num { width: 64px; height: 64px; font-size: 1.4rem; margin-bottom: 1.5rem; }

  /* form */
  .fgrid { grid-template-columns: 1fr; }
  .budget-cards { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band__acts { flex-direction: column; align-items: center; }
  .cta-band__acts .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bot  { flex-direction: column; align-items: flex-start; }
  .flegal      { gap: 1rem; }

  /* service pages */
  .benefit-grid { grid-template-columns: 1fr; }
  .cta-sect-acts { flex-direction: column; align-items: center; }
  .cta-sect-acts .btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ----------------------------------------------------------
   20. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  :root { --section-pad: clamp(3rem,8vw,5rem); }

  /* hero */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust { gap: 1rem; }
  .trust-div { display: none; }
  .trust-item { min-width: calc(50% - .5rem); }

  /* why card */
  .why-card { padding: 1.5rem; }

  /* form */
  .fcard { padding: 1.2rem; }
  .ftitle { font-size: 1.4rem; }

  /* service hero ctas */
  .svc-hero-ctas { flex-direction: column; }
  .svc-hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------
   21. FAQ ACCORDION (service pages)
   ---------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), background var(--ease);
}
.faq-item[open] { border-color: var(--gold); background: rgba(201,168,76,.04); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; color: var(--white);
  position: relative; min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 14px; height: 14px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transform-origin: center;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--gold-light); }
.faq-answer { padding: 0 1.6rem 1.4rem; }
.faq-answer p { color: var(--text-light); font-size: .95rem; line-height: 1.75; }

@media (max-width: 480px) {
  .faq-item summary { padding: 1.1rem 1.2rem; font-size: .95rem; }
  .faq-answer { padding: 0 1.2rem 1.2rem; }
}

/* ===== TABLET NAVBAR (769px–1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-cta { padding: .55rem 1rem; font-size: .82rem; }
  .nav-trigger, .nav-link { padding: .5rem .65rem; font-size: .82rem; }
  .drop-panel { width: 480px; }
}

/* ===== MEDIUM LAPTOP (1025px–1200px) ===== */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-trigger, .nav-link { padding: .55rem .75rem; font-size: .85rem; }
}

/* ----------------------------------------------------------
   22. FORM ENHANCEMENTS
   ---------------------------------------------------------- */
.form-support-text {
  text-align: center; font-size: .8rem; color: var(--text-muted);
  margin-top: .65rem; letter-spacing: .02em;
}

.fsub { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.fg span { font-size: .8rem; color: var(--text-muted); }

/* Success box enhanced — display is controlled by JS only, never forced here */
.fmsg-ok {
  flex-direction: column; align-items: center;
  text-align: center; gap: .6rem; padding: 1.6rem 1.4rem;
}
.fmsg-check {
  font-size: 1.6rem; width: 48px; height: 48px;
  background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fmsg-main { font-size: .95rem; font-weight: 600; color: #86efac; margin: 0; }
.fmsg-sub  { font-size: .83rem; color: #a7f3d0; margin: 0; line-height: 1.6; max-width: 42ch; }
.fmsg-blog-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .4rem; padding: .6rem 1.4rem;
  background: var(--gold); color: var(--navy);
  font-size: .85rem; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; transition: background .2s, transform .2s;
}
.fmsg-blog-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ----------------------------------------------------------
   23. SERVICE PAGE LEAD FORM SECTION
   ---------------------------------------------------------- */
.svc-lead {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.svc-lead::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.svc-lead-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.svc-lead-side { position: sticky; top: 100px; }
.svc-lead-side .s-sub { margin-bottom: 1.5rem; }
.svc-lead-trust {
  display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem;
}
.svc-lead-trust-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .85rem; color: var(--text-light);
}
.svc-lead-trust-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

@media (max-width: 768px) {
  .svc-lead-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-lead-side { position: static; }
}

/* ----------------------------------------------------------
   24. BLOG PAGE
   ---------------------------------------------------------- */
.blog-hero {
  padding: clamp(6rem,10vw,8rem) 0 clamp(3rem,5vw,4rem);
  background: var(--navy);
  position: relative; overflow: hidden;
}
.blog-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero-sub { color: var(--text-light); font-size: clamp(.95rem, 1.6vw, 1.1rem); max-width: 60ch; line-height: 1.75; }

.blog-cats {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
}
.blog-cats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
  margin-top: 3rem;
}
.blog-cat-card {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  text-decoration: none; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  position: relative; overflow: hidden;
}
.blog-cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.blog-cat-card:hover { border-color: rgba(201,168,76,.35); background: var(--navy-light); transform: translateY(-3px); }
.blog-cat-card:hover::after { transform: scaleX(1); }
.blog-cat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.blog-cat-title { font-size: 1.05rem; font-weight: 600; color: var(--white); }
.blog-cat-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }
.blog-cat-soon  {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); opacity: .65; margin-top: .2rem;
}
.blog-coming {
  padding: clamp(4rem,7vw,5rem) 0;
  background: var(--navy); text-align: center;
}
.blog-coming-inner {
  max-width: 640px; margin: 0 auto;
}
.blog-coming h2 { color: var(--white); margin-bottom: 1rem; }
.blog-coming p  { color: var(--text-light); margin-bottom: 2rem; }

/* ----------------------------------------------------------
   25. RTL / ARABIC PAGE SUPPORT
   ---------------------------------------------------------- */
.page-ar,
.page-ar * { direction: rtl; }

.page-ar .nav-inner  { direction: ltr; } /* keep nav LTR */
.page-ar .footer     { direction: rtl; }
.page-ar .breadcrumb { direction: rtl; }

.page-ar .svc-lead-grid { direction: rtl; }
.page-ar .svc-lead-grid > * { direction: rtl; }

.page-ar .g2, .page-ar .g2r { direction: rtl; }
.page-ar .g2 > *, .page-ar .g2r > * { direction: rtl; }

.page-ar .blog-hero h1,
.page-ar .blog-hero-sub { direction: rtl; }

.page-ar .fcard { direction: rtl; }
.page-ar .mob-link { border-left: none; border-right: 2px solid transparent; }
.page-ar .mob-link:hover { border-right-color: var(--gold); border-left: none; }
.page-ar .mob-sub-link { padding-right: 2.4rem; padding-left: 1.3rem; }

/* Arabic font stack */
.page-ar, .page-ar h1, .page-ar h2, .page-ar h3, .page-ar h4,
.page-ar .ftitle, .page-ar .fsec, .page-ar .label {
  font-family: 'Cairo', 'Tajawal', 'Segoe UI', 'Noto Sans Arabic', system-ui, sans-serif;
}

/* ----------------------------------------------------------
   26. LANGUAGE SWITCHER
   ---------------------------------------------------------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px; overflow: hidden;
  animation: fadeUp .5s ease both;
}
.lang-switch a {
  padding: .35rem .9rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lang-switch a:hover { color: var(--gold); background: rgba(201,168,76,.07); }
.lang-switch a.active {
  background: rgba(201,168,76,.12); color: var(--gold);
  border-radius: 50px;
}
.lang-switch .sep-pipe {
  color: rgba(201,168,76,.25); font-size: .7rem; user-select: none;
}

/* ---- Fix: hide native checkbox inside .budget-card (checkbox variant) ---- */
.budget-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
