/* ---- VARIABLES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #f0c55a;
  --gold-dark: #8a6920;
  --dark: #0a0c10;
  --dark-2: #111318;
  --dark-3: #181c24;
  --dark-4: #1e2330;
  --dark-5: #252c3a;
  --text-primary: #e8eaf0;
  --text-secondary: #8b94aa;
  --text-muted: #5a6278;
  --border: rgba(201, 168, 76, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

img {
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.text-gold {
  color: var(--gold) !important;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---- BUTTONS ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn-gold:hover {
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}

/* ================================
   NAVBAR
   ================================ */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-apex {
  color: var(--gold);
}

.brand-capital {
  color: var(--text-primary);
  margin-left: 2px;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 6px 10px !important;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

/* Hamburger */
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
}

.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 4px 0;
  transition: var(--transition);
}

/* ================================
   HERO
   ================================ */
.hero-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  flex: 1;
  min-width: 100px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.metric-unit {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-left: 2px;
}

.metric-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.metric-divider {
  width: 1px;
  background: var(--border-subtle);
  align-self: stretch;
}

/* Hero Cards */
.hero-card-group {
  position: relative;
  width: 380px;
  height: 420px;
}

.floating-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
}

.card-main {
  position: absolute;
  top: 40px;
  left: 0;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold);
  animation: float-main 6s ease-in-out infinite;
}

.card-chart {
  margin-bottom: 16px;
}

.card-chart svg {
  width: 100%;
  height: 80px;
}

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.card-small {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-small-1 {
  top: 10px;
  right: -20px;
  animation: float-card1 5s ease-in-out 0.5s infinite;
}

.card-small-2 {
  bottom: 60px;
  right: 0;
  animation: float-card2 7s ease-in-out 1s infinite;
}

.card-small-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
}

.card-small-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes float-main {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-card1 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes float-card2 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(8px) rotate(1deg);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-anim 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes scroll-anim {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ================================
   ABOUT
   ================================ */
.section-about {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

.about-img-bg {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark-5) 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  transform: rotate(-3deg);
}

.about-img-inner {
  position: absolute;
  inset: 0;
  background: var(--dark-3);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}

.about-img-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.about-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.about-years {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-years-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-years-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feature-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ================================
   SERVICES
   ================================ */
.section-services {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border-subtle) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.1));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.85rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-light);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ================================
   STATS
   ================================ */
.section-stats {
  padding: 100px 0;
  background: var(--dark-2);
}

.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ================================
   TEAM
   ================================ */
.section-team {
  padding: 120px 0;
  background: var(--dark);
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.team-card:hover .avatar-placeholder {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

.team-social {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: var(--dark);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-pos {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.team-exp {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================
   TESTIMONIALS
   ================================ */
.section-testimonials {
  padding: 120px 0;
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.testi-featured {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3), var(--shadow-gold);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  font-size: 2.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.testi-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================
   CTA BAND
   ================================ */
.section-cta {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

/* ================================
   CONTACT
   ================================ */
.section-contact {
  padding: 120px 0;
  background: var(--dark-2);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-val {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.form-label-custom {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input-custom {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input-custom::placeholder {
  color: var(--text-muted);
}

.form-input-custom:focus {
  border-color: var(--gold);
  background: var(--dark-5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

select.form-input-custom {
  cursor: pointer;
}

textarea.form-input-custom {
  resize: vertical;
  min-height: 120px;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: block;
}

.footer-about {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--border);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-newsletter {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  padding: 10px 16px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================================
   INTERSECTION OBSERVER ANIMATIONS
   ================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s !important;
}

.delay-2 {
  transition-delay: 0.24s !important;
}

.delay-3 {
  transition-delay: 0.36s !important;
}

.delay-4 {
  transition-delay: 0.48s !important;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 991.98px) {
  .hero-card-group {
    display: none;
  }

  .section-about,
  .section-services,
  .section-stats,
  .section-team,
  .section-testimonials,
  .section-cta,
  .section-contact {
    padding: 80px 0;
  }

  .about-img-wrap {
    max-width: 340px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .metric-divider {
    width: 100%;
    height: 1px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}