/* ============================================================
   JAMARK SECURITY — Global Stylesheet
   ============================================================ */
:root {
  --white: #ffffff;
  --off-white: #F8F8F8;
  --light-bg: #F2F3F5;
  --mid-bg: #E8E9EC;
  --border: #D8D9DC;
  --border-dark: #C0C2C6;
  --text: #111318;
  --text-mid: #444750;
  --text-sub: #6B7080;
  --text-light: #9CA3AF;
  --dark: #0F1117;
  --dark2: #161920;
  --dark3: #1E2128;
  --gold: #D4941E;
  --gold-dk: #B8800F;
  --gold-lt: rgba(212,148,30,.1);
  --gold-bg: rgba(212,148,30,.06);
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Inter', sans-serif;
  --fm: 'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--fb); font-weight: 400; font-size: 16px; line-height: 1.75; overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; } ::-webkit-scrollbar-track { background: var(--off-white); } ::-webkit-scrollbar-thumb { background: var(--border-dark); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CURSOR ── */
#cur { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; transform: translate(-50%,-50%); width: 20px; height: 20px; }
#cur::before, #cur::after { content: ''; position: absolute; background: var(--gold); }
#cur::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
#cur::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
#cur-dot { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; width: 4px; height: 4px; background: var(--gold); transform: translate(-50%,-50%); border-radius: 50%; transition: transform .1s; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; background: rgba(10,10,14,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.07); transition: background .4s, border-color .4s; }
nav.scrolled { background: rgba(10,10,14,.78); }
nav.transparent { background: transparent; border-color: transparent; backdrop-filter: none; }

.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 0; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; display: block; opacity: .95; transition: opacity .3s; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.nav-logo img:hover { opacity: 1; }
.nav-logo-txt { font-family: var(--fh); font-size: 22px; letter-spacing: .06em; color: var(--white); display: none; }
.nav-logo-txt span { color: var(--gold); }

.nav-center { display: flex; gap: 0; list-style: none; }
.nav-center > li { position: relative; }
.nav-center > li > a, .nav-center > li > span { font-family: var(--fm); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); text-decoration: none; padding: 0 18px; height: 76px; display: flex; align-items: center; cursor: pointer; transition: color .2s; white-space: nowrap; }
.nav-center > li > a:hover, .nav-center > li > span:hover { color: var(--white); }
.nav-center > li > a.active { color: var(--gold); }
.nav-drop { display: none; position: absolute; top: 76px; left: 0; background: rgba(12,12,16,.97); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 12px 40px rgba(0,0,0,.5); min-width: 230px; backdrop-filter: blur(16px); }
.nav-center li:hover .nav-drop { display: block; }
.nav-drop a { display: block; font-family: var(--fm); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); padding: 14px 20px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s, background .2s; }
.nav-drop a:last-child { border-bottom: none; }
.nav-drop a:hover { color: var(--gold); background: rgba(212,148,30,.08); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--fm); font-size: 14px; letter-spacing: .08em; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.nav-phone:hover { color: var(--white); }
.nav-btn { font-family: var(--fm); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 11px 22px; text-decoration: none; transition: background .2s; display: inline-block; cursor: pointer; border: none; }
.nav-btn:hover { background: var(--gold-dk); }

/* hamburger */
#nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(212,148,30,.85); border: none; cursor: pointer; flex-shrink: 0; transition: background .25s; backdrop-filter: blur(4px); }
#nav-toggle:hover { background: var(--gold); }
#nav-toggle svg { display: block; }

/* drawer */
#nav-drawer { position: fixed; top: 76px; right: 0; width: 300px; background: rgba(10,10,14,.97); border-left: 1px solid rgba(255,255,255,.08); box-shadow: -12px 8px 48px rgba(0,0,0,.6); z-index: 999; transform: translateX(100%); transition: transform .35s cubic-bezier(.25,.46,.45,.94); max-height: calc(100vh - 76px); overflow-y: auto; backdrop-filter: blur(16px); }
#nav-drawer.open { transform: translateX(0); }
.drawer-section { border-bottom: 1px solid rgba(255,255,255,.07); }
.drawer-link { display: block; font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); padding: 16px 24px; text-decoration: none; cursor: pointer; transition: color .2s, background .2s; border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { color: var(--gold); background: rgba(212,148,30,.07); }
.drawer-link.active { color: var(--gold); }
.drawer-group-label { font-family: var(--fm); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); padding: 14px 24px 6px; background: rgba(255,255,255,.03); }
.drawer-sub { padding-left: 36px; font-size: 10px; letter-spacing: .12em; }
.drawer-phone { display: block; padding: 20px 24px; background: rgba(212,148,30,.08); border-bottom: 1px solid rgba(255,255,255,.07); font-family: var(--fh); font-size: 24px; color: var(--white); text-decoration: none; font-weight: 700; letter-spacing: -.01em; transition: color .2s; }
.drawer-phone:hover { color: var(--gold); }
.drawer-phone-label { font-family: var(--fm); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 4px; display: block; }
.drawer-cta { display: block; margin: 16px; font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 14px 20px; text-align: center; text-decoration: none; cursor: pointer; transition: background .2s; }
.drawer-cta:hover { background: var(--gold-dk); }
#drawer-overlay { position: fixed; inset: 0; top: 76px; background: rgba(0,0,0,.4); z-index: 998; display: none; cursor: pointer; }
#drawer-overlay.open { display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.eyebrow { font-family: var(--fm); font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.sec-h { font-family: var(--fh); font-size: clamp(40px, 5.5vw, 74px); line-height: .95; letter-spacing: -.02em; font-weight: 700; color: var(--text); }
.sec-h-white { font-family: var(--fh); font-size: clamp(40px, 5.5vw, 74px); line-height: .95; letter-spacing: -.02em; font-weight: 700; color: var(--white); }

/* ── BUTTONS ── */
.btn-primary { font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 14px 32px; text-decoration: none; display: inline-block; transition: background .2s, transform .15s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); }
.btn-outline { font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; background: transparent; color: var(--text); border: 1.5px solid var(--border-dark); padding: 14px 32px; text-decoration: none; display: inline-block; transition: border-color .2s, color .2s, transform .15s; cursor: pointer; }
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-outline-white { font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); padding: 14px 32px; text-decoration: none; display: inline-block; transition: border-color .2s, transform .15s; cursor: pointer; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.8); transform: translateY(-1px); }

/* ── TICKER ── */
.ticker { background: var(--dark); padding: 11px 0; overflow: hidden; }
.t-track { display: flex; animation: tick 32s linear infinite; white-space: nowrap; }
.t-item { font-family: var(--fm); font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 0 36px; display: flex; align-items: center; gap: 14px; }
.t-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94); }
.rv.on { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-36px); transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94); }
.rv-l.on { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(36px); transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94); }
.rv-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .26s; } .d4 { transition-delay: .38s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .64s; }

/* ── PAGE HERO ── */
.page-hero { padding: 148px 5vw 72px; border-bottom: 1px solid var(--border); background: var(--white); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: var(--fh); font-size: clamp(52px, 8vw, 104px); line-height: .88; margin-top: 10px; font-weight: 700; letter-spacing: -.03em; color: var(--text); }
.page-hero p { font-size: 17px; color: var(--text-sub); max-width: 560px; margin-top: 18px; line-height: 1.8; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 5vw; }
.trust-items { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 36px; height: 36px; background: var(--gold-bg); border: 1.5px solid var(--gold-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.trust-text { font-family: var(--fm); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); line-height: 1.4; }

/* ── FOOTER ── */
footer { background: var(--dark); color: var(--white); padding: 72px 0 36px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding: 0 5vw; margin-bottom: 52px; }
.ft-logo img { height: 52px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; filter: drop-shadow(0 1px 4px rgba(0,0,0,.4)); }
.ft-about { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 240px; margin-bottom: 16px; }
.ft-lic { font-family: var(--fm); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.12); padding: 5px 10px; display: inline-block; }
.ft-col-t { font-family: var(--fm); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 15px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; display: block; }
.ft-links a:hover { color: var(--white); }
.ft-contact p { font-size: 15px; color: rgba(255,255,255,.5); margin-bottom: 7px; line-height: 1.5; }
.ft-contact a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.ft-contact a:hover { color: var(--gold); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 5vw 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-copy { font-family: var(--fm); font-size: 13px; letter-spacing: .06em; color: rgba(255,255,255,.3); }
.ft-by { font-family: var(--fm); font-size: 13px; letter-spacing: .06em; color: rgba(255,255,255,.3); }
.ft-by span { color: var(--gold); }

/* ── FAQ ── */
.faq-list { max-width: 900px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-q-txt { font-family: var(--fm); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text); transition: color .2s; line-height: 1.5; }
.faq-q:hover .faq-q-txt { color: var(--gold); }
.faq-icon { font-family: var(--fm); font-size: 18px; color: var(--text-sub); flex-shrink: 0; transition: transform .3s, color .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.25,.46,.45,.94); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { font-size: 15px; color: var(--text-sub); line-height: 1.8; padding-bottom: 24px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 5vw 120px; background: var(--white); }
.ci-block { margin-bottom: 32px; }
.ci-label { font-family: var(--fm); font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ci-val { font-size: 16px; color: var(--text); line-height: 1.7; }
.ci-val a { color: var(--text); text-decoration: none; transition: color .2s; }
.ci-val a:hover { color: var(--gold); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-field label { font-family: var(--fm); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--text-sub); }
.cf-field input, .cf-field textarea, .cf-field select { background: var(--off-white); border: 1.5px solid var(--border); color: var(--text); font-family: var(--fb); font-size: 14px; font-weight: 400; padding: 12px 16px; outline: none; transition: border-color .2s; width: 100%; }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-color: var(--gold); background: var(--white); }
.cf-field textarea { min-height: 130px; resize: vertical; }
.form-success { display: none; padding: 20px 24px; background: rgba(212,148,30,.08); border: 1.5px solid var(--gold); font-family: var(--fm); font-size: 11px; letter-spacing: .1em; color: var(--text); margin-top: 16px; }
.form-success.show { display: block; }

/* ── REVIEWS ── */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.rev-card { background: var(--white); padding: 44px 36px; position: relative; overflow: hidden; transition: box-shadow .3s; }
.rev-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); z-index: 1; position: relative; }
.rev-bq { position: absolute; top: 14px; right: 22px; font-family: var(--fh); font-size: 90px; color: rgba(212,148,30,.07); line-height: 1; pointer-events: none; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rev-star { color: var(--gold); font-size: 13px; }
.rev-txt { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.rev-bar { width: 28px; height: 1.5px; background: var(--border-dark); margin-bottom: 14px; }
.rev-name { font-family: var(--fm); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text); }
.rev-via { font-family: var(--fm); font-size: 9px; letter-spacing: .1em; color: var(--text-light); margin-top: 3px; }

/* ── SERVICE AREA CITIES ── */
.area-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 36px; border: 1px solid rgba(255,255,255,.1); }
.area-city { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.65); font-family: var(--fm); font-size: 11px; letter-spacing: .08em; }
.area-city:nth-child(2n) { border-right: none; }
.area-city:last-child, .area-city:nth-last-child(2) { border-bottom: none; }
.area-city::before { content: '→ '; color: var(--gold); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  body { cursor: auto; }
  #cur, #cur-dot { display: none; }
  .nav-center, .nav-right { display: none !important; }
  #nav-toggle { display: flex !important; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(44px, 12vw, 80px); }
}
@media (max-width: 600px) {
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
}
