/* ===== CSS Custom Properties / Design Tokens ===== */
:root {
  /* Primary Palette - derived from logo */
  --clr-bg-dark: #0b0f1a;
  --clr-bg-section: #0f1525;
  --clr-bg-card: #141c2f;
  --clr-bg-card-hover: #1a2540;
  --clr-navy: #1a2332;
  --clr-navy-light: #243044;
  --clr-gold: #c9a84c;
  --clr-gold-light: #e4c76e;
  --clr-gold-dim: rgba(201, 168, 76, 0.15);
  --clr-silver: #d0d5e0;
  --clr-silver-light: #e8ebf0;
  --clr-text: #c8cdd8;
  --clr-text-muted: #7e8a9e;
  --clr-white: #ffffff;
  --clr-accent-blue: #3a7bd5;

  /* Glass */
  --glass-bg: rgba(20, 28, 47, 0.65);
  --glass-border: rgba(201, 168, 76, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ===== Utility Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.3); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(90deg, var(--clr-navy) 0%, var(--clr-bg-dark) 100%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-gold);
  flex-shrink: 0;
}

.top-bar-item a:hover {
  color: var(--clr-gold);
}

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(11, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 4px;
}

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

.nav-logo-text .brand-name {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-logo-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--clr-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-silver);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 2px;
  transition: width var(--transition-med);
}

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

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

/* Active nav link state */
.nav-links a.nav-active {
  color: var(--clr-gold);
}

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

/* Login CTA - excluded from active underline */
.nav-cta {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  color: var(--clr-bg-dark) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  color: var(--clr-bg-dark) !important;
}

.nav-cta.nav-active {
  color: var(--clr-bg-dark) !important;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--clr-silver);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 26, 0.92) 0%,
    rgba(15, 21, 37, 0.8) 50%,
    rgba(11, 15, 26, 0.88) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 30%; left: 60%; animation-delay: 2s; width: 5px; height: 5px; }
.particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }
.particle:nth-child(5) { top: 15%; left: 85%; animation-delay: 4s; width: 3px; height: 3px; }
.particle:nth-child(6) { top: 70%; left: 50%; animation-delay: 5s; width: 6px; height: 6px; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  color: var(--clr-bg-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--clr-silver);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(208, 213, 224, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(201, 168, 76, 0.08);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ===== Section Styling ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.5;
}

.section-label::before {
  right: calc(100% + 12px);
}

.section-label::after {
  left: calc(100% + 12px);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== About Section ===== */
.about {
  padding: var(--section-pad);
  background: var(--clr-bg-section);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--clr-gold);
  border-radius: 16px;
  opacity: 0.2;
  z-index: -1;
}

.about-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--clr-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-content .gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: var(--clr-text);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--clr-bg-card);
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition-fast);
}

.about-feature:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: var(--clr-bg-card-hover);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
}

.about-feature span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-silver);
}

/* ===== Services / Finance Dept Section ===== */
.services {
  padding: var(--section-pad);
  background: var(--clr-bg-dark);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold-dim), rgba(201, 168, 76, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-med);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--clr-gold);
  transition: fill var(--transition-fast);
}

.service-card:hover .service-icon svg {
  fill: var(--clr-bg-dark);
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===== Vision & Mission ===== */
.vision-mission {
  padding: var(--section-pad);
  background: var(--clr-bg-section);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(145deg, var(--clr-bg-card) 0%, rgba(20, 28, 47, 0.5) 100%);
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: border-color var(--transition-med);
}

.vm-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 4px 0 0 4px;
}

.vm-number {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: var(--clr-gold-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vm-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-gold);
}

.vm-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.8;
}

/* ===== CTA / Consultation Section ===== */
.consultation {
  padding: var(--section-pad);
  background: var(--clr-bg-dark);
  position: relative;
}

.consultation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consultation-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.consultation-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.consultation-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
  border-radius: 20px;
}

.consultation-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--clr-white);
  margin-bottom: 16px;
}

.consultation-content p {
  color: var(--clr-text);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--clr-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-gold);
}

.benefit-item span {
  font-size: 0.95rem;
  color: var(--clr-silver);
  font-weight: 500;
}

/* ===== Contact Section ===== */
.contact {
  padding: var(--section-pad);
  background: var(--clr-bg-section);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--clr-white);
  margin-bottom: 8px;
}

.contact-info > p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--clr-bg-card);
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition-fast);
}

.contact-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-gold);
}

.contact-item-content h4 {
  font-size: 0.95rem;
  color: var(--clr-white);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.contact-item-content a:hover {
  color: var(--clr-gold);
}

/* Contact Form */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-silver);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  background: var(--clr-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  color: var(--clr-silver);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  color: var(--clr-bg-dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* ===== Footer ===== */
.footer {
  background: var(--clr-navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--clr-bg-card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-text-muted);
  transition: fill var(--transition-fast);
}

.footer-social-link:hover svg {
  fill: var(--clr-bg-dark);
}

.footer-column h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--clr-gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-bottom a {
  color: var(--clr-gold);
}

/* ===== Scroll To Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-bg-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .consultation-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  html {
    scroll-padding-top: 75px;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-logo-text .brand-name {
    font-size: 1.1rem;
  }

  .nav-logo-text .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .navbar .container {
    padding: 10px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 15, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 90px 32px 40px;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    transition: right var(--transition-med);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 14px 16px;
    border-radius: 10px;
    transition: background var(--transition-fast), color var(--transition-fast);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.nav-active {
    background: rgba(201, 168, 76, 0.1);
    color: var(--clr-gold);
  }

  .nav-links .nav-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    padding: 14px 28px !important;
    border-bottom: none;
  }

  .nav-links .nav-cta:hover,
  .nav-links .nav-cta.nav-active {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
    color: var(--clr-bg-dark) !important;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-fast);
  }

  .mobile-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    letter-spacing: 1.5px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .stat-item {
    width: calc(50% - 12px);
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 40px;
  }

  .section-label::before,
  .section-label::after {
    width: 20px;
  }

  /* About */
  .about-image img {
    height: 300px;
  }

  .about-image-accent {
    display: none;
  }

  .about-content .gold-line {
    margin-bottom: 18px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 22px;
  }

  /* VM */
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vm-card {
    padding: 32px 24px;
  }

  .vm-number {
    font-size: 3rem;
  }

  /* About Features */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Consultation */
  .consultation-image img {
    height: 300px;
  }

  .consultation-content h2 {
    font-size: 1.6rem;
  }

  /* Contact */
  .contact-item {
    padding: 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Top Bar */
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-item:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .nav-links {
    width: 100%;
    padding: 80px 24px 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .consultation-image img {
    height: 240px;
  }

  .about-image img {
    height: 240px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .vm-card h3 {
    font-size: 1.3rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
