/* ============================================
   FK TRADING COMPANY — Luxury Gold & Black Theme
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Blacks */
  --black-deep: #050505;
  --black-rich: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --black-elevated: #1A1A1A;
  --black-border: #252525;

  /* Golds */
  --gold-dark: #8B6914;
  --gold-primary: #C9A84C;
  --gold-bright: #D4AF37;
  --gold-light: #E8D48B;
  --gold-pale: #F5EACB;
  --gold-shimmer: linear-gradient(135deg, #B8860B 0%, #C9A84C 25%, #E8D48B 50%, #C9A84C 75%, #B8860B 100%);
  --gold-gradient: linear-gradient(135deg, #C9A84C, #E8D48B);
  --gold-gradient-diagonal: linear-gradient(45deg, #8B6914, #C9A84C, #E8D48B, #C9A84C, #8B6914);
  --gold-text-gradient: linear-gradient(135deg, #E8D48B, #C9A84C, #E8D48B);

  /* Text */
  --text-primary: #F5F0E8;
  --text-secondary: #B0A898;
  --text-muted: #706A60;
  --text-gold: #C9A84C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-width: 1200px;
  --container-padding: clamp(20px, 5vw, 40px);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.4s var(--ease-luxury);
  --transition-slow: 0.8s var(--ease-luxury);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: var(--gold-primary);
  color: var(--black-deep);
}

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

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

a:hover {
  color: var(--gold-light);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black-rich);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title .gold {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Gold Decorative Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 2rem 0;
  position: relative;
}

.gold-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-luxury);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.nav-logo-divider {
  width: 1px;
  height: 24px;
  background: rgba(201, 168, 76, 0.3);
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.3;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.nav-cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--gold-primary) !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  transition: all var(--transition-base) !important;
}

.nav-cta:hover {
  background: var(--gold-primary);
  color: var(--black-deep) !important;
  border-color: var(--gold-primary);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-primary);
  transition: all 0.3s var(--ease-luxury);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-deep);
}

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

/* Noise texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  z-index: 1;
  pointer-events: none;
}

/* Gold radial glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Diagonal gold lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.08), transparent);
}

.hero-lines::before {
  left: 20%;
  top: -50%;
  transform: rotate(15deg);
}

.hero-lines::after {
  right: 25%;
  top: -50%;
  transform: rotate(-10deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--container-padding);
}

.hero-crown {
  width: 50px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInDown 1s var(--ease-luxury) 0.3s forwards;
}

.hero-crown svg {
  width: 50px;
  height: 50px;
  fill: var(--gold-primary);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 0.9s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 1.5s forwards;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--black-deep);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  color: var(--black-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover::before {
  opacity: 1;
  animation: shimmer 2s linear infinite;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid rgba(201, 168, 76, 0.4);
}

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

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--black-rich);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 2;
  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: all 0.8s var(--ease-luxury);
}

.about-image-frame:hover img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

/* Decorative corner accents */
.about-image-frame::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-top: 1px solid var(--gold-primary);
  border-right: 1px solid var(--gold-primary);
  z-index: 3;
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid var(--gold-primary);
  border-left: 1px solid var(--gold-primary);
  z-index: 3;
  pointer-events: none;
}

.about-name-tag {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--black-deep);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1rem 1.5rem;
  z-index: 5;
}

.about-name-tag h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.about-name-tag span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--black-deep);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-categories {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-category {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-luxury);
}

.service-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.service-category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

.service-category-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.5;
}

.service-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card {
  display: block;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 1.5rem;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
  color: var(--text-primary);
  text-decoration: none;
}

a.service-card:hover {
  color: var(--text-primary);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--black-elevated);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-base);
}

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

/* Bulk badge */
.services-bulk-badge {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent);
}

.services-bulk-badge p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-primary);
  font-style: italic;
}

.services-bulk-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ============================================
   GLOBAL REACH / NETWORK SECTION
   ============================================ */
.network {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--black-soft);
  overflow: hidden;
}

.network::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.network-content {
  max-width: 500px;
}

.network-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.network-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.network-region {
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.02);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.network-region::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.network-region:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.05);
}

.network-region:hover::before {
  opacity: 1;
}

.network-region h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.network-region p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--black-deep);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.contact-info {
  max-width: 440px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.02);
  transition: all var(--transition-base);
}

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

.contact-channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.5;
}

.contact-channel h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-channel a,
.contact-channel p {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-channel a:hover {
  color: var(--gold-primary);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.contact-social a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-deep);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 1rem 1.25rem;
  outline: none;
  transition: all var(--transition-base);
  border-radius: 0;
  -webkit-appearance: none;
}

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

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

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

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-status {
  font-size: 0.85rem;
  padding: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
  background: rgba(74, 222, 128, 0.05);
}

.form-status.error {
  display: block;
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
  background: rgba(248, 113, 113, 0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  background: var(--black-rich);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

@keyframes goldPulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.08; }
}

/* Reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold particle keyframes */
@keyframes particleDrift {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.gold-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  animation: particleDrift linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-stats {
    justify-items: center;
  }

  .about-name-tag {
    left: auto;
    right: -1rem;
  }

  .network-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .network-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    transition: right 0.5s var(--ease-luxury);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

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

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .network-map {
    grid-template-columns: 1fr;
  }

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

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

  .section-label {
    justify-content: center;
  }

  .section-label::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-image-frame::after,
  .about-image-accent {
    display: none;
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   SERVICE SUBPAGE — HERO
   ============================================ */
.sp-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--black-deep);
  overflow: hidden;
}

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

.sp-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.sp-hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sp-hero-lines::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.06), transparent);
  right: 15%;
  top: -50%;
  transform: rotate(-8deg);
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* Breadcrumb */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.sp-breadcrumb a {
  color: var(--text-muted);
}

.sp-breadcrumb a:hover {
  color: var(--gold-primary);
}

.sp-breadcrumb-sep {
  color: rgba(201, 168, 76, 0.3);
  font-size: 0.7rem;
}

.sp-breadcrumb-current {
  color: var(--gold-primary);
}

.sp-hero-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin-bottom: 2rem;
  background: rgba(201, 168, 76, 0.03);
}

.sp-hero-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.5;
}

.sp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sp-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

/* ============================================
   SERVICE SUBPAGE — CONTENT SECTIONS
   ============================================ */
.sp-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.sp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.sp-section--dark {
  background: var(--black-rich);
}

.sp-section--deep {
  background: var(--black-deep);
}

.sp-section--soft {
  background: var(--black-soft);
}

/* Two-column layout */
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.sp-grid--center {
  align-items: center;
}

.sp-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.sp-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.sp-content h3:first-child {
  margin-top: 0;
}

.sp-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.sp-content p:last-child {
  margin-bottom: 0;
}

.sp-content ul,
.sp-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.sp-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.sp-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.sp-content ol {
  counter-reset: sp-counter;
}

.sp-content ol li {
  counter-increment: sp-counter;
}

.sp-content ol li::before {
  content: counter(sp-counter);
  background: none;
  clip-path: none;
  width: auto;
  height: auto;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  top: 0;
  left: 0;
}

/* Feature cards grid */
.sp-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sp-feature {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--black-card);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.sp-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
}

.sp-feature:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.sp-feature:hover::before {
  transform: scaleX(1);
}

.sp-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1.25rem;
}

.sp-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.5;
}

.sp-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sp-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process / Steps */
.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
}

.sp-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  counter-increment: step-counter;
  position: relative;
}

.sp-step:last-child {
  border-bottom: none;
}

.sp-step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-align: center;
  padding-top: 0.2rem;
}

.sp-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.sp-step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Highlight Box */
.sp-highlight {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  position: relative;
}

.sp-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-gradient);
}

.sp-highlight h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.sp-highlight p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stats row for service pages */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.sp-stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--black-card);
}

.sp-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sp-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SERVICE SUBPAGE — CTA BANNER
   ============================================ */
.sp-cta {
  padding: var(--section-padding) 0;
  background: var(--black-soft);
  position: relative;
}

.sp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.sp-cta-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.sp-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.sp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   SERVICE SUBPAGE — RELATED SERVICES
   ============================================ */
.sp-related {
  padding: var(--section-padding) 0;
  background: var(--black-deep);
  position: relative;
}

.sp-related::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.sp-related-card {
  display: block;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--black-card);
  transition: all var(--transition-base);
  color: var(--text-primary);
}

.sp-related-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

.sp-related-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.sp-related-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sp-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.sp-related-card:hover .sp-related-link svg {
  transform: translateX(4px);
}

.sp-related-link svg {
  transition: transform var(--transition-base);
}

/* ============================================
   SERVICE SUBPAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sp-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 8rem 0 3.5rem;
  }

  .sp-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .sp-step-number {
    font-size: 2rem;
  }

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

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

  .sp-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sp-stats {
    grid-template-columns: 1fr;
  }
}
