/* ============================================================
   SKJ FABRICATOR — Custom Stylesheet
   Industrial Premium Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  color-scheme: light;
  /* ─── Light Theme Palette (9 colors) ─── */
  --bg:        #F5F8FC;   /* 1 · main page background   */
  --bg-2:      #EBF0F7;   /* 2 · section / alt bg       */
  --bg-3:      #DDE5F0;   /* 3 · deeper section bg      */
  --card:      #FFFFFF;   /* 4 · card / surface         */
  --border:    #C9D4E3;   /* 5 · borders & dividers     */
  --gold:      #E07B00;   /* 6 · amber primary accent   */
  --gold-dark: #B86000;   /* 7 · dark amber hover       */
  --spark:     #E03A00;   /* 8 · orange-red accent      */
  --white:     #102040;   /* 9 · primary text (navy)    */
  --muted:     #5A7090;   /* 10· muted blue-gray text   */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.ls-logo {
  width: 160px;
  animation: lsPulse 1.8s ease-in-out infinite alternate;
}
@keyframes lsPulse {
  from { filter: drop-shadow(0 0 8px rgba(181,112,12,0.35)); }
  to   { filter: drop-shadow(0 0 32px rgba(181,112,12,0.95)); }
}

.ls-bar-wrap {
  width: 220px; height: 3px;
  background: var(--bg-3);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.ls-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--spark));
  animation: lsBar 2.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes lsBar { from { width: 0; } to { width: 100%; } }

.ls-text {
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 14px;
  animation: lsBlink 1s ease-in-out infinite;
}
@keyframes lsBlink { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Loading spark particles */
.ls-sparks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ls-spark {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--spark);
  border-radius: 50%;
  animation: lsSparkFly var(--d,1.5s) var(--delay,0s) ease-out infinite;
  left: var(--x,50%); top: var(--y,50%);
}
@keyframes lsSparkFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx,20px), var(--ty,-60px)) scale(0); opacity: 0; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%) scale(1);
  transition: width .15s, height .15s, background .2s, transform .18s cubic-bezier(.4,0,.2,1), opacity .18s;
}
#cursor-ring {
  position: fixed;
  width: 10px; height: 10px;
  border: 1.5px solid rgba(181,112,12,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%) scale(1);
  transition: width .18s cubic-bezier(.4,0,.2,1), height .18s cubic-bezier(.4,0,.2,1), border-color .2s, transform .22s cubic-bezier(.4,0,.2,1), opacity .18s;
}
body.c-hover #cursor-dot  { width: 14px; height: 14px; background: var(--spark); }
body.c-hover #cursor-ring { width: 20px; height: 20px; border-color: rgba(201,77,0,.7); }

.cursor-trail {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--spark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0.18;
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1);
  animation: trailFade .55s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes trailFade {
  from { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 0;  transform: translate(-50%,-50%) scale(0); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.1rem 0;
  transition: background .4s ease, padding .3s ease, box-shadow .3s ease;
}
#header.scrolled {
  background: rgba(245,248,252,.97);
  padding: .7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.10), 0 1px 0 rgba(181,112,12,.18);
  backdrop-filter: blur(12px);
}

.nav-logo img { height: 50px; transition: filter .3s; }
.nav-logo img:hover { filter: drop-shadow(0 0 14px rgba(181,112,12,.6)); }

.nav-link {
  position: relative;
  color: var(--white);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .25rem 0;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; border: none; background: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border);
  z-index: 895;
  padding: 95px 2rem 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  overflow-y: auto;
  transition: right .4s cubic-bezier(.4,0,.2,1);
}
#mobile-menu.open { right: 0; }
#mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 894;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
#mob-overlay.open { opacity: 1; visibility: visible; }

.mob-link {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s, padding-left .3s;
}
.mob-link:hover, .mob-link.active { color: var(--gold); padding-left: .5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(130deg, var(--gold), var(--spark));
  color: #ffffff;
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: .82rem 2rem;
  border-radius: 3px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  isolation: isolate;
  transition: transform .2s, box-shadow .3s, color .3s;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg, var(--spark), var(--gold));
  opacity: 0;
  z-index: 0;
  transition: opacity .3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(181,112,12,.35); color: #ffffff; }
.btn-gold:hover::before { opacity: 1; }
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: .82rem 2rem;
  border-radius: 3px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all .3s;
}
.btn-outline:hover { background: var(--gold); color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(181,112,12,.25); }

.btn-green {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: .82rem 2rem;
  border-radius: 3px;
  transition: all .3s;
}
.btn-green:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.28); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.section-tag::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--gold); }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  text-transform: uppercase;
}
.section-heading .g { color: var(--gold); }
.section-heading .s { color: var(--spark); }

.gold-bar { width: 55px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--spark)); border-radius: 2px; margin: 1.4rem 0; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,248,252,.88) 0%, rgba(245,248,252,.65) 55%, rgba(224,59,0,.05) 100%);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem,7vw,5.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-transform: uppercase;
}
.hero-title .g { color: var(--gold); }

/* Sparks overlay */
.sparks-canvas { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.spark-p {
  position: absolute;
  border-radius: 50%;
  background: var(--spark);
  animation: spFloat var(--d) linear var(--del) infinite;
  width: var(--sz); height: var(--sz);
  left: var(--x); top: var(--y);
  opacity: 0;
}
@keyframes spFloat {
  0%   { opacity: 0; transform: translate(0,0) scale(1); }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.sc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.sc::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--spark));
  transition: width .4s ease;
}
.sc:hover { border-color: rgba(181,112,12,.28); transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,.12), 0 0 28px rgba(181,112,12,.09); }
.sc:hover::after { width: 100%; }

.sc-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg,rgba(181,112,12,.12),rgba(201,77,0,.08));
  border: 1px solid rgba(181,112,12,.18);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: all .3s;
}
.sc:hover .sc-icon { background: linear-gradient(135deg,rgba(181,112,12,.22),rgba(201,77,0,.16)); box-shadow: 0 0 18px rgba(181,112,12,.2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal        { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-l      { opacity: 0; transform: translateX(-50px); transition: opacity .8s ease, transform .8s ease; }
.reveal-r      { opacity: 0; transform: translateX(50px);  transition: opacity .8s ease, transform .8s ease; }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: translate(0,0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ============================================================
   STATS
   ============================================================ */
.stat-box {
  text-align: center; padding: 2rem 1rem;
  border: 1px solid var(--border); background: var(--card); border-radius: 4px;
  transition: all .3s;
}
.stat-box:hover { border-color: rgba(181,112,12,.3); transform: translateY(-4px); }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.feat-item:last-child { border-bottom: none; }
.feat-item:hover { padding-left: .4rem; }
.feat-check {
  flex-shrink: 0; width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--spark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item { overflow: hidden; border-radius: 4px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 65%);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gal-overlay { opacity: 1; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all .4s;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: .8rem; right: 1.4rem;
  font-family: var(--font-head); font-size: 5.5rem;
  color: rgba(181,112,12,.10); line-height: 1;
}
.testi-card:hover { border-color: rgba(181,112,12,.28); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.10); }
.stars { color: var(--gold); letter-spacing: .1em; }
.testi-dot.active { background: var(--gold) !important; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; margin-bottom: .65rem;
  background: var(--card); transition: border-color .3s;
}
.faq-item.open { border-color: rgba(181,112,12,.28); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; cursor: pointer;
  color: var(--white);
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500; letter-spacing: .02em;
  transition: color .3s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--gold); }
.faq-ico {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: transform .3s, background .3s, border-color .3s;
}
.faq-item.open .faq-ico { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); color: #ffffff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner { padding: 0 1.5rem 1.2rem; color: var(--muted); line-height: 1.75; font-size: .95rem; }

/* ============================================================
   CONTACT FORM & CARDS
   ============================================================ */
.ci-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  transition: all .3s;
}
.ci-card:hover { border-color: rgba(181,112,12,.28); transform: translateX(4px); }
.ci-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: linear-gradient(135deg,rgba(181,112,12,.12),rgba(201,77,0,.08));
  border: 1px solid rgba(181,112,12,.18);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.form-ctrl {
  width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 3px;
  padding: .85rem 1.2rem;
  color: var(--white); font-family: var(--font-body); font-size: .95rem;
  outline: none; transition: border-color .3s, box-shadow .3s;
}
.form-ctrl::placeholder { color: #B5AFA8; }
.form-ctrl:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,112,12,.10); }
textarea.form-ctrl { resize: vertical; min-height: 130px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.pg-hero {
  min-height: 320px; padding-top: 100px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 55%, #C8D6E8 100%);
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(181,112,12,.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,77,0,.07) 0%, transparent 60%);
}
.pg-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem,5.5vw,4.2rem);
  font-weight: 700; text-transform: uppercase; color: var(--white);
}
.breadcrumb { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .85rem; margin-top: .6rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--spark); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(181,112,12,.07) 0%, transparent 70%);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #0B1930; border-top: 1px solid rgba(224,123,0,.20); color: #8096B0; }
.foot-logo img { height: 54px; transition: filter .3s; }
.foot-logo img:hover { filter: drop-shadow(0 0 12px rgba(181,112,12,.5)); }
.foot-h {
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; position: relative; padding-bottom: .7rem;
}
.foot-h::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.foot-link {
  display: block; color: #7A94AD; text-decoration: none; font-size: .9rem;
  padding: .22rem 0; transition: color .3s, padding-left .3s;
}
.foot-link:hover { color: var(--gold); padding-left: .35rem; }
#footer .text-muted { color: #7A94AD; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1024px: hide desktop nav ───────────────────────────── */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .desk-nav { display: none !important; }
}

/* ── 768px: tablet ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-title    { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .section-heading { font-size: clamp(1.8rem, 5.5vw, 2.5rem); }
  .pg-title      { font-size: clamp(2rem, 6vw, 3rem); }
  .stat-num      { font-size: 2.5rem; }
  .stat-box      { padding: 1.6rem .8rem; }
  .testi-card    { min-width: min(320px, 78vw); }
  #svc-modal > div { padding: 1.75rem 1.5rem; }
}

/* ── 640px: small tablets / large phones ───────────────── */
@media (max-width: 640px) {
  /* Header */
  .nav-logo img  { height: 42px; }

  /* Hero */
  .hero-title    { font-size: clamp(2rem, 8.5vw, 2.8rem); }

  /* Stats */
  .stat-num      { font-size: 2rem; }
  .stat-box      { padding: 1.3rem .5rem; }

  /* Section headings */
  .section-heading { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  /* Service cards */
  .sc            { padding: 1.5rem 1.2rem; }

  /* Booking modal — scrollable on small screens */
  #svc-modal > div {
    max-height: 92vh;
    overflow-y: auto;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 1.3rem 1.1rem;
  }

  /* Testimonials — near-full-width cards */
  .testi-card    { min-width: calc(100vw - 3rem); }

  /* FAQ */
  .faq-q         { font-size: .95rem; padding: 1rem 1.1rem; }
  .faq-ico       { width: 21px; height: 21px; font-size: .82rem; }

  /* Buttons */
  .btn-gold,
  .btn-outline,
  .btn-green     { padding: .75rem 1.5rem; font-size: .85rem; }

  /* Disable slide-offset hover on touch devices */
  .feat-item:hover   { padding-left: 0; }
  .ci-card:hover     { transform: none; }
  .sc:hover          { transform: none; box-shadow: none; }
  .stat-box:hover    { transform: none; }
  .proj-card:hover   { transform: none; box-shadow: none; }
  .gallery-item:hover { transform: none; }

  /* Footer logo */
  .foot-logo img { height: 46px; }

  /* Inner-page hero */
  .pg-hero       { min-height: 220px; padding-top: 90px; }

  /* Process steps (inner pages) */
  .process-step  { padding: 1.2rem 1rem; }
}

/* ── 480px: small phones ────────────────────────────────── */
@media (max-width: 480px) {
  /* Typography */
  .hero-title      { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .section-heading { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .pg-title        { font-size: clamp(1.6rem, 8vw, 2rem); }

  /* Stats — 3 tight columns on 320-480px */
  .stat-num  { font-size: 1.75rem; }
  .stat-box  { padding: 1rem .35rem; }

  /* Buttons */
  .btn-gold,
  .btn-outline,
  .btn-green { padding: .7rem 1.2rem; font-size: .8rem; letter-spacing: .07em; }

  /* Mobile menu — full-width on tiny screens */
  #mobile-menu   { width: min(280px, 100%); }

  /* Service cards */
  .sc            { padding: 1.3rem 1rem; }

  /* Form controls */
  .form-ctrl     { padding: .75rem 1rem; font-size: .9rem; }
  textarea.form-ctrl { min-height: 100px; }

  /* Gold bar compact */
  .gold-bar      { margin: .9rem 0; }

  /* Section tag */
  .section-tag   { font-size: .7rem; letter-spacing: .22em; }
}

/* ── Misc Utilities ─ */
.gold-line { width: 55px; height: 3px; background: linear-gradient(90deg,var(--accent),var(--accent-soft)); border-radius: 2px; }
.glow-gold { box-shadow: 0 0 22px rgba(37,99,235,.13); }
.text-gold { color: var(--accent); }
.text-spark { color: var(--accent-soft); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.bg-card { background: var(--card); }
.border-dim { border-color: var(--border); }

/* ============================================================
   SERVICES NAV DROPDOWN
   ============================================================ */
.nav-dropdown {
  position: relative;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255,255,255,.97);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 6px;
  min-width: 240px;
  padding: .45rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(30,64,175,.08), 0 0 0 1px rgba(37,99,235,.08);
  z-index: 950;
}
.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--accent);
}
.nav-drop-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .72rem 1.3rem;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .875rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s, padding-left .2s;
}
.nav-drop-link:last-child { border-bottom: none; }
.nav-drop-link:hover {
  color: var(--accent);
  background: rgba(96,165,250,.08);
  padding-left: 1.6rem;
}
.nav-drop-link .di {
  width: 30px; height: 30px;
  background: rgba(96,165,250,.09);
  border: 1px solid rgba(96,165,250,.14);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-drop-link:hover .di { background: rgba(181,112,12,.16); }
.nav-arr {
  font-size: .7rem;
  margin-left: 3px;
  display: inline-block;
  opacity: .7;
  transition: transform .25s ease;
}
.nav-dropdown:hover .nav-arr { transform: rotate(180deg); }

/* ── MOBILE SERVICES SUB-LINKS ───────────────────────────── */
.mob-svc-sub {
  padding-left: 1rem;
  margin: .1rem 0 .3rem .25rem;
  border-left: 2px solid rgba(37,99,235,.13);
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.mob-sub-link {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 0;
  transition: color .2s, padding-left .2s;
}
.mob-sub-link:hover { color: var(--gold); padding-left: .3rem; }

/* ============================================================
   SERVICE SECTION — HOVER EXPAND & LEARN LINK
   ============================================================ */
.svc-learn-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: .35rem;
  transition: color .25s, gap .25s;
}
.svc-learn-link:hover { color: var(--spark); gap: .65rem; }

/* Desktop hover → auto-expand service details */
@media (hover: hover) {
  .svc-expand-container:hover .svc-details {
    display: block !important;
    animation: svcFadeIn .28s ease forwards;
  }
  .svc-expand-container:hover .svc-toggle-btn {
    transform: rotate(180deg);
  }
  .svc-expand-container:hover {
    border-color: rgba(37,99,235,.18) !important;
  }
}
@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Service card (index.html) */
.svc-card { cursor: pointer; }
.svc-card button { cursor: pointer; }
.svc-toggle-btn { cursor: pointer; user-select: none; }
