:root {
  --gold: #C9952A;
  --gold-light: #E8C06A;
  --gold-dark: #8B6510;
  --forest: #0B2214;
  --forest-mid: #133320;
  --forest-light: #1E4D2F;
  --green-accent: #2E7D52;
  --obsidian: #080C0A;
  --ash: #4A5A50;
  --silver: #8A9E90;
  --ivory: #F7FAF7;
  --white: #FFFFFF;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ NAV ═══ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background .4s, border-color .4s, height .4s;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-family: 'Montserrat', sans-serif;
}

#nav.scrolled {
  background: rgba(0, 0, 0, 0.98);
  height: 76px;
  border-bottom: 1px solid rgba(201, 149, 42, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo img {
  height: 60px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .4s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 12px 24px !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .2s;
  border: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.ham-line {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: .3s;
}

/* ═══ MOBILE NAV ═══ */
#mob-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .6s var(--ease);
}

#mob-nav.open {
  transform: translateX(0);
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  color: var(--gold);
  cursor: pointer;
}

.mob-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .3s;
}

.mob-link:hover, .mob-link.active {
  color: var(--gold);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(46, 125, 82, .12);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .3s;
  font-weight: 300;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  font-weight: 300;
}

.footer-seo {
  font-size: 10px;
  color: rgba(255, 255, 255, .1);
}

.footer-designed {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  font-weight: 300;
}

.footer-designed a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-designed a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(201, 149, 42, 0.4);
}

/* ═══ FLOATING BUTTONS ═══ */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  border: none;
  outline: none;
  text-decoration: none;
}

.fab:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wa-btn {
  background: #25D366;
  color: #fff;
}

.stt-btn {
  background: var(--gold);
  color: var(--obsidian);
  display: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.stt-btn.show {
  display: flex !important;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    right: 10px;
    gap: 10px;
  }
  .fab {
    width: 38px;
    height: 38px;
  }
}

/* ═══ ANIMATIONS ═══ */
@keyframes textShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shine-gold,
h1 span[style*="var(--gold)"],
h2 span[style*="var(--gold)"],
h3 span[style*="var(--gold)"],
h4 span[style*="var(--gold)"],
h5 span[style*="var(--gold)"],
h6 span[style*="var(--gold)"],
.ih-title span[style*="var(--gold)"],
.s-h span[style*="var(--gold)"],
.s-title span[style*="var(--gold)"],
.hero-title span[style*="var(--gold)"],
.ps-title span[style*="var(--gold)"],
.blog-title span[style*="var(--gold)"],
.cta-band-h span[style*="var(--gold)"],
.footer-col-title,
.s-label,
.s-tag,
.service-num,
.sbc-num,
.wi-cat,
.ph-cat,
.tl-yr,
.tl-year,
.award-year,
.qcard-year,
.team-role,
.sm-num,
.ih-breadcrumb span,
.breadcrumb span,
.breadcrumb a,
.ci-label,
.qs-label,
.faq-q span {
  background: linear-gradient(90deg, #C9952A 0%, #E8C06A 35%, #FFFFFF 50%, #E8C06A 65%, #C9952A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: textShine 4s linear infinite;
  display: inline-block;
  vertical-align: bottom;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  #nav { padding: 0 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  #nav { padding: 0 24px; height: 64px; }
  .nav-logo img { height: 44px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 60px 24px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
