/* ─── DESIGN TOKENS ─── */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #111f4a;
  --navy-light: #1a2e60;
  --gold:       #c9a227;
  --gold-light: #e8c547;
  --gold-pale:  #f5e199;
  --white:      #ffffff;
  --off-white:  #f0f2f8;
  --text-muted: #8a9bc4;
  --radius:     12px;
  --shadow:     0 8px 32px rgba(0,0,0,0.35);
  --transition: 0.3s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  animation: pageFadeIn 0.5s ease both;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── KEYFRAMES ─── */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── HERO ENTRANCE ─── */
.hero-text .eyebrow {
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.15s;
}
.hero-text h1 {
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.3s;
}
.hero-text p {
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.5s;
}
.hero-cta {
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.65s;
}
.hero-logo-wrap {
  animation: scaleIn 1s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.35s;
}

/* ─── SCROLL REVEAL ─── */
/* exit: no delay so elements snap out cleanly when scrolling back */
/* entry: stagger delay applied via --reveal-delay CSS custom property set by JS */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0s;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0s;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-scale {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0s;
}
.reveal-scale.visible {
  transform: scaleX(1);
  transition-delay: var(--reveal-delay, 0s);
}

/* ─── BUTTON PRESS ─── */
.btn-primary:active { transform: scale(0.96); }
.btn-outline:active { transform: scale(0.96); }

/* ─── UTILITY ─── */
.gold { color: var(--gold); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(13,27,62,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(13,27,62,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,162,39,0.5);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.brand:hover .brand-logo {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,162,39,0.4);
}
.brand-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
/* invisible bridge so cursor doesn't lose hover crossing the gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.85rem;
}
.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.3s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.nav-dropdown-menu a {
  padding: 0.85rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), color var(--transition);
  width: 100%;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(201,162,39,0.1); color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(17,31,74,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #060f25 0%, #0d1b3e 50%, #111f4a 100%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-ring {
  position: relative;
  width: min(400px, 80vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.2);
  animation: spin 18s linear infinite;
}
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,39,0.1);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}
.hero-logo {
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(201,162,39,0.3));
  transition: filter var(--transition);
}
.hero-logo:hover { filter: drop-shadow(0 0 60px rgba(201,162,39,0.5)); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 1.6rem 0;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─── SERVICES ─── */
.services { background: linear-gradient(180deg, var(--navy) 0%, #080f27 100%); }
.services-category-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
  margin-bottom: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.35);
  background: rgba(201,162,39,0.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: background var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-icon { background: rgba(201,162,39,0.16); }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
}

/* ─── WHY CHOOSE US ─── */
.why { background: #080f27; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(201,162,39,0.3);
  background: rgba(201,162,39,0.04);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.why-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.why-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
}

/* ─── SECTORS ─── */
.sectors { background: linear-gradient(180deg, #080f27 0%, var(--navy-mid) 100%); }
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.sector-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: default;
}
.sector-pill:hover {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.4);
  color: var(--gold-light);
}

/* ─── ABOUT ─── */
.about { background: var(--navy); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-frame {
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,0.2);
  background: rgba(255,255,255,0.03);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.about-image-frame img {
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.25));
}
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}
.about-badge span { display: block; font-size: 1.8rem; }
.about-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.2rem;
}
.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.about-feature::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact { background: linear-gradient(180deg, var(--navy) 0%, #060f25 100%); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.google-form-wrap { width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option,
.form-group select optgroup { background: #0d1b3e; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── OTHER SERVICES TICKER ─── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-item {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.5rem;
}
.ticker-sep {
  color: var(--navy);
  opacity: 0.5;
  font-size: 0.5rem;
  vertical-align: middle;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FOOTER ─── */
.footer {
  background: #060f25;
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(201,162,39,0.3); }
.footer-tagline { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: rgba(13,27,62,0.88);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.85);
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1),
              visibility 0.4s ease,
              transform 0.4s cubic-bezier(0.22,1,0.36,1),
              background 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: rgba(201,162,39,0.18);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 32px rgba(201,162,39,0.25);
}
.scroll-top:active { transform: scale(0.93); }

.scroll-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-top-track {
  fill: none;
  stroke: rgba(201,162,39,0.15);
  stroke-width: 2.5;
}
.scroll-top-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.12s linear;
}
.scroll-top-arrow {
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.scroll-top:hover .scroll-top-arrow { transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-ring { width: min(260px, 70vw); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,27,62,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(201,162,39,0.2);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    width: 100%;
  }
  .nav-links a::after { display: none; }

  /* ── mobile dropdown ── */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-dropdown-toggle svg { transition: transform var(--transition); }
  .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static;
    display: none;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(0,0,0,0.18);
    border: none;
    border-radius: 0;
    min-width: unset;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a { padding-left: 3.5rem; }

  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .hero-text h1 { font-size: 1.9rem; }
  .stat-number { font-size: 1.5rem; }
}

/* on mobile, side-slides become vertical to avoid overflow */
@media (max-width: 900px) {
  .reveal-left  { transform: translateY(30px) scale(0.97); }
  .reveal-right { transform: translateY(30px) scale(0.97); }
  .reveal-left.visible  { transform: translateY(0) scale(1); }
  .reveal-right.visible { transform: translateY(0) scale(1); }
}

/* respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .hero-text .eyebrow,
  .hero-text h1,
  .hero-text p,
  .hero-cta,
  .hero-logo-wrap { animation: none; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .reveal-scale { transform: scaleX(1); transition: none; }
}
