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

/* ----------------------------------------------------------
   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
   ---------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1.4rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.nav.on {
  background: rgba(11,18,32,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: .9rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--white); letter-spacing: .05em; flex-shrink: 0; }
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: .88rem; font-weight: 500; letter-spacing: .05em; color: var(--text-light); transition: color .25s; }
.nav-links a:hover, .nav-links a.current-menu-item { color: var(--gold); }

/* 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;
}
.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; }
.hbg.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay menu */
.mob-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 998; flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem; padding: 2rem;
}
.mob-menu.on { display: flex; }
.mob-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--white); font-weight: 500; transition: color .2s; }
.mob-menu a:hover { color: var(--gold); }
.mob-menu .btn { font-family: var(--font-body); font-size: 1rem; }

/* WordPress nav menu resets */
.nav-links ul  { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links li  { list-style: none; }
.mob-menu ul   { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.mob-menu li   { list-style: none; }

/* ----------------------------------------------------------
   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  { display: none; }   /* prevents overflow in single column */
  .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 */
  .nav-links, .nav-cta-wrap { display: none; }
  .hbg { display: flex; }

  /* 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; }
}
