/* ==========================================================================
   Zed Sign and Events — Premium Dark & Gold Theme
   ========================================================================== */

:root {
  --navy-950: #05070f;
  --navy-900: #0a0e1a;
  --navy-850: #0c1120;
  --navy-800: #10162b;
  --navy-700: #171f38;
  --navy-600: #212b4a;
  --navy-500: #2c3760;

  --gold-300: #f7e3a0;
  --gold-400: #f2d675;
  --gold-500: #d4af37;
  --gold-600: #b8901f;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --text-light: #f1f2f7;
  --text-muted: #9aa3bd;
  --text-faint: #6c7593;

  --border-soft: rgba(212, 175, 55, 0.16);
  --border-softer: rgba(255, 255, 255, 0.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-gold: 0 20px 60px -20px rgba(212, 175, 55, 0.35);
  --shadow-dark: 0 30px 80px -30px rgba(0, 0, 0, 0.75);

  color-scheme: dark;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-900);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.10), transparent 40%),
    radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.07), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(33, 43, 74, 0.6), transparent 55%),
    var(--navy-900);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

a { color: var(--gold-400); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-300); }

p { color: var(--text-muted); margin-bottom: 1rem; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold-500); color: var(--navy-950); }

.container-xl { max-width: 1260px; margin-inline: auto; padding-inline: 1.25rem; }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold-400) !important; }
.bg-navy { background: var(--navy-850); }
.text-muted-soft { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section { position: relative; padding: 6.5rem 0; }
.section-tight { padding: 4rem 0; }

.section-title { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 1rem; }
.section-sub { max-width: 620px; color: var(--text-muted); font-size: 1.02rem; }
.section-head { margin-bottom: 3.2rem; }
.section-head.text-center { max-width: 700px; margin-inline: auto; }

/* diagonal gold divider echoing the reference luxury backgrounds */
.gold-divider {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 40%, var(--gold-400) 50%, transparent 90%);
  opacity: 0.35;
  transform: rotate(-8deg);
}
.gold-divider::before { top: 12%; left: -40%; }
.gold-divider::after { bottom: 8%; left: -20%; transform: rotate(-8deg) scaleX(0.7); opacity: 0.2; }

.dotted-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gold-500) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.08;
  pointer-events: none;
}

.hex-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, var(--gold-500) 12%, transparent 12.5%, transparent 87%, var(--gold-500) 87.5%, var(--gold-500)),
    linear-gradient(150deg, var(--gold-500) 12%, transparent 12.5%, transparent 87%, var(--gold-500) 87.5%, var(--gold-500)),
    linear-gradient(30deg, var(--gold-500) 12%, transparent 12.5%, transparent 87%, var(--gold-500) 87.5%, var(--gold-500)),
    linear-gradient(150deg, var(--gold-500) 12%, transparent 12.5%, transparent 87%, var(--gold-500) 87.5%, var(--gold-500));
  background-size: 46px 80px;
  background-position: 0 0, 0 0, 23px 40px, 23px 40px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-weight: 600;
  border-radius: 999px;
  border: none;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-gold:hover { color: var(--navy-950); transform: translateY(-3px); box-shadow: 0 24px 60px -16px var(--gold-glow); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  background: transparent;
  color: var(--gold-400);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  transition: all .3s ease;
}
.btn-outline-gold:hover { color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all .35s ease;
  background: linear-gradient(to bottom, rgba(5, 7, 15, 0.85), transparent);
}
.site-header.is-scrolled {
  background: rgba(8, 11, 22, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-softer);
  padding: 0.7rem 0;
}
.site-header .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.site-header .navbar-brand span { color: var(--gold-400); }
.brand-logo { height: 44px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); }
.site-header .nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--gold-400); }
.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 999px;
}
.site-header .navbar-toggler { border-color: var(--border-soft); }
.site-header .navbar-toggler-icon {
  filter: invert(76%) sepia(35%) saturate(500%) hue-rotate(1deg);
}

/* ---------- Hero ---------- */
.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  background-image:
    linear-gradient(120deg, rgba(5,7,15,0.96) 15%, rgba(10,14,26,0.82) 50%, rgba(10,14,26,0.55) 100%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950) 60%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide .hero-copy { position: relative; z-index: 3; padding: 8rem 0 6rem; }
.hero-slide .hero-eyebrow { color: var(--gold-400); letter-spacing: 4px; text-transform: uppercase; font-size: 0.85rem; font-weight: 600; }
.hero-slide h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  max-width: 760px;
  margin: 1rem 0 1.4rem;
  background: linear-gradient(120deg, #fff, var(--gold-300) 60%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-slide p { max-width: 540px; font-size: 1.08rem; color: var(--text-muted); }
.hero-slide .hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 0.6rem; }
.hero-dots button {
  width: 34px; height: 4px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: all .3s ease;
}
.hero-dots button.is-active { background: var(--gold-400); width: 54px; }

.hero-scroll-cue {
  position: absolute; right: 2.5rem; bottom: 3rem; z-index: 5;
  writing-mode: vertical-rl; color: var(--text-faint); font-size: 0.78rem; letter-spacing: 3px;
  display: flex; align-items: center; gap: 0.8rem; text-transform: uppercase;
}
.hero-scroll-cue::after { content: ""; width: 1px; height: 60px; background: linear-gradient(var(--gold-500), transparent); }

/* ---------- Marquee ticker ---------- */
.marquee-strip {
  position: relative;
  background: var(--navy-850);
  border-block: 1px solid var(--border-soft);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding-inline: 1.6rem; font-family: var(--font-display); font-size: 1.15rem;
  color: var(--text-muted); white-space: nowrap;
}
.marquee-track span i { color: var(--gold-500); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(212,175,55,0.05), transparent);
}
.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--gold-400);
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}
.stat-card .stat-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.4rem; }

/* ---------- Cards (Services / Projects / Blog / Team) ---------- */
.card-gold {
  position: relative;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  height: 100%;
}
.card-gold:hover { transform: translateY(-8px); box-shadow: var(--shadow-dark); border-color: var(--gold-500); }

.service-card { padding: 0; }
.service-card .service-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-card .service-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.card-gold:hover .service-media img { transform: scale(1.08); }
.service-card .service-body { padding: 2.2rem 2rem 2.4rem; }
.service-card .service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  color: var(--gold-400); font-size: 1.5rem; margin-bottom: 1.4rem;
  transition: all .4s ease;
}
.card-gold:hover .service-icon { background: var(--gold-500); color: var(--navy-950); transform: rotate(-8deg) scale(1.05); }
.service-card h3 { font-size: 1.28rem; margin-bottom: 0.7rem; }
.service-card .service-link { font-size: 0.86rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-400); }

.project-card { display: flex; flex-direction: column; }
.project-card .project-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-700); }
.project-card .project-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card-gold:hover .project-media img { transform: scale(1.08); }
.project-card .project-media .ph-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-900) 60%);
}
.project-card .project-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,7,15,0.92), transparent 60%);
}
.project-card .project-cat {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: rgba(10,14,26,0.75); border: 1px solid var(--border-soft);
  color: var(--gold-400); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
}
.project-card .project-body { padding: 1.6rem 1.8rem 1.9rem; }
.project-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.project-card .project-client { color: var(--text-faint); font-size: 0.85rem; }

.blog-card .blog-media { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--navy-700); }
.blog-card .blog-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card-gold:hover .blog-media img { transform: scale(1.08); }
.blog-card .blog-media .ph-gradient { position: absolute; inset: 0; background: linear-gradient(140deg, var(--navy-500), var(--navy-900) 70%); }
.blog-card .blog-body { padding: 1.6rem 1.8rem 1.9rem; }
.blog-card .blog-meta { font-size: 0.8rem; color: var(--text-faint); letter-spacing: 0.5px; margin-bottom: 0.6rem; text-transform: uppercase; }
.blog-card h3 { font-size: 1.16rem; margin-bottom: 0.6rem; }
.blog-card h3 a { color: var(--text-light); }
.blog-card h3 a:hover { color: var(--gold-400); }

.team-card { text-align: center; padding: 2.2rem 1.4rem; }
.team-card .team-photo {
  width: 108px; height: 108px; margin: 0 auto 1.2rem;
  border-radius: 50%; background: linear-gradient(140deg, var(--navy-600), var(--navy-900));
  border: 2px solid var(--border-soft); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-400);
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card .team-role { color: var(--text-faint); font-size: 0.85rem; }
.team-card .team-social { margin-top: 1rem; display: flex; justify-content: center; gap: 0.7rem; }
.team-card .team-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem;
}
.team-card .team-social a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }

/* ---------- Process steps ---------- */
.process-step { position: relative; padding-left: 4.6rem; }
.process-step .process-num {
  position: absolute; left: 0; top: 0;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--gold-400); font-size: 1.1rem;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step:not(:last-child)::after {
  content: ""; position: absolute; left: 1.7rem; top: 3.4rem; bottom: -2.2rem; width: 1px;
  background: linear-gradient(var(--gold-500), transparent);
}

/* ---------- Testimonials ---------- */
.testimonial-track { display: flex; gap: 1.6rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start; min-width: min(420px, 86vw);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 2.2rem; position: relative;
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-500); opacity: 0.5; line-height: 1; }
.testimonial-card .rating { color: var(--gold-400); font-size: 0.85rem; margin-bottom: 0.8rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.4rem; }
.testimonial-card .author-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700);
  display: flex; align-items: center; justify-content: center; color: var(--gold-400);
  font-family: var(--font-display); border: 1px solid var(--border-soft);
  overflow: hidden; flex-shrink: 0;
}
.testimonial-card .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .author-name { color: var(--text-light); font-weight: 600; font-size: 0.95rem; }
.testimonial-card .author-role { color: var(--text-faint); font-size: 0.8rem; }
.testimonial-nav { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.testimonial-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-soft);
  background: transparent; color: var(--gold-400); display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.testimonial-nav button:hover { background: var(--gold-500); color: var(--navy-950); }

/* ---------- CTA / Newsletter ---------- */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--border-soft);
  padding: 3.6rem clamp(1.5rem, 5vw, 4rem);
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.6rem; }
.cta-form { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.cta-form input[type="email"] {
  flex: 1; min-width: 240px; padding: 0.95rem 1.3rem; border-radius: 999px;
  border: 1px solid var(--border-soft); background: rgba(255,255,255,0.04); color: var(--text-light);
}
.cta-form input[type="email"]::placeholder { color: var(--text-faint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--border-softer); padding-top: 5rem; position: relative; }
.site-footer h4 { font-size: 1.05rem; color: var(--gold-400); margin-bottom: 1.3rem; }
.site-footer .footer-brand { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-light); }
.site-footer .footer-brand span { color: var(--gold-400); }
.site-footer p, .site-footer a { color: var(--text-muted); font-size: 0.94rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.7rem; }
.site-footer a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.footer-bottom { margin-top: 3.5rem; padding: 1.6rem 0; border-top: 1px solid var(--border-softer); font-size: 0.85rem; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); }

/* ---------- Instagram gallery strip ---------- */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin-top: 2.5rem; }
.insta-strip a { aspect-ratio: 1; border-radius: 10px; overflow: hidden; position: relative; background: var(--navy-700); }
.insta-strip a .ph-gradient { position: absolute; inset: 0; background: linear-gradient(150deg, var(--navy-600), var(--navy-900)); }
.insta-strip a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insta-strip a:hover img { transform: scale(1.08); }
.insta-strip a .reel-badge { position: absolute; top: 8px; right: 8px; color: #fff; font-size: 1.1rem; text-shadow: 0 1px 6px rgba(0,0,0,.7); z-index: 2; }
.insta-strip a .hover-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 1.3rem; opacity: 0; transition: opacity .3s ease; background: rgba(5,7,15,0.55); }
.insta-strip a:hover .hover-icon { opacity: 1; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative; padding: 10.5rem 0 5rem; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-850));
  border-bottom: 1px solid var(--border-softer);
}
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 0.6rem; }
.breadcrumb-gold { display: flex; gap: 0.5rem; align-items: center; color: var(--text-muted); font-size: 0.92rem; }
.breadcrumb-gold a { color: var(--text-muted); }
.breadcrumb-gold .current { color: var(--gold-400); }

/* ---------- Filter pills (Projects) ---------- */
.filter-pills { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-pills button {
  padding: 0.6rem 1.4rem; border-radius: 999px; border: 1px solid var(--border-soft);
  background: transparent; color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: all .3s ease;
}
.filter-pills button.is-active, .filter-pills button:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }

/* ---------- Forms (Contact / Admin) ---------- */
.form-control-dark, .form-select-dark {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft);
  color: var(--text-light); border-radius: var(--radius-sm); padding: 0.85rem 1.1rem;
}
.form-control-dark::placeholder { color: var(--text-faint); }
.form-control-dark:focus, .form-select-dark:focus {
  background: rgba(255,255,255,0.06); border-color: var(--gold-500); color: var(--text-light);
  box-shadow: 0 0 0 3px var(--gold-glow); outline: none;
}
label.form-label-gold { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.4rem; display: block; }
.text-danger-gold { color: #ff8f8f; font-size: 0.82rem; }

/* ---------- Contact info blocks ---------- */
.contact-info-card {
  display: flex; gap: 1.1rem; padding: 1.6rem; border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  margin-bottom: 1.2rem;
}
.contact-info-card .icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(212,175,55,0.12); color: var(--gold-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text-light); }
.contact-info-card p { margin: 0; font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .site-header { background: rgba(8, 11, 22, 0.92); }
}
@media (max-width: 767px) {
  .section { padding: 4rem 0; }
  .hero-slide .hero-copy { padding: 7rem 0 4rem; }
  .process-step { padding-left: 3.6rem; }
}

/* ---------- AOS override for dark theme (no white flash) ---------- */
[data-aos] { pointer-events: auto; }

/* ---------- Floating signage icons (ambient background decoration) ---------- */
.floating-icons {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.floating-icons .float-icon {
  position: absolute;
  top: var(--fi-top);
  left: var(--fi-left);
  font-size: var(--fi-size, 1.6rem);
  color: var(--gold-500);
  opacity: 0.11;
  pointer-events: auto;
  cursor: default;
  filter: drop-shadow(0 0 0 transparent);
  animation: icon-drift var(--fi-duration, 12s) ease-in-out infinite;
  animation-delay: var(--fi-delay, 0s);
  transition: opacity .4s ease, transform .4s ease, color .4s ease, filter .4s ease;
  will-change: transform;
}
.floating-icons .float-icon:hover {
  opacity: 0.9;
  color: var(--gold-300);
  transform: scale(1.4) rotate(-8deg);
  filter: drop-shadow(0 0 18px var(--gold-glow));
}
@keyframes icon-drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(8px, -16px) rotate(7deg); }
  50%  { transform: translate(-6px, -26px) rotate(-5deg); }
  75%  { transform: translate(-10px, -10px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@media (max-width: 767px) {
  .floating-icons { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-icons .float-icon { animation: none; }
}
