/* ==========================================================================
   BUYERS PAGE STYLES
   ========================================================================== */

/* Variables */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: rgba(212, 175, 55, 0.8);
  --color-black: #000000;
  --color-black-soft: #111111;
  --color-gray: #1A1A1A;
  --color-white: #FFFFFF;
  --color-text: rgba(255, 255, 255, 0.9);
  --color-text-light: rgba(255, 255, 255, 0.7);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-black);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cursor Styles */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
  will-change: transform;
}

.cursor-follower {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  will-change: transform;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
}

.scroll-indicator__line {
  width: 1px;
  height: 4rem;
  background-color: var(--color-gold);
  margin-bottom: 1rem;
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1rem);
    opacity: 0.2;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-black-soft);
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo__main {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.logo__sub {
  font-size: 1.2rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav__link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: 10rem 5rem;
  display: none;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__item {
  margin-bottom: 3rem;
}

.mobile-nav__link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-gold);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  display: none;
  z-index: 1001;
}

.hamburger__box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger__inner {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.1s 0.2s ease;
}

.hamburger__inner::before,
.hamburger__inner::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: transform 0.2s 0.2s ease;
}

.hamburger__inner::before {
  top: -8px;
}

.hamburger__inner::after {
  top: 8px;
}

.hamburger.is-active .hamburger__inner {
  background-color: transparent;
}

.hamburger.is-active .hamburger__inner::before {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.buyers-hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-color: var(--color-black-soft);
  overflow: hidden;
}

.buyers-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-top: 12rem;
}

.buyers-hero__title {
  font-size: clamp(4rem, 8vw, 9.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 2.4rem;
}

.buyers-hero__subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--color-gold-light);
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Benefits Section */
.benefits-section {
  padding: 12rem 0;
  background-color: var(--color-black);
}

.section-header {
  margin-bottom: 6rem;
  text-align: center;
}

.section-header__subtitle {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}

.section-header__title {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 1.2;
  color: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background-color: var(--color-gray);
  padding: 4rem 3rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid var(--color-gold);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-card__icon {
  margin-bottom: 2rem;
}

.benefit-card__title {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.benefit-card__text {
  font-size: 1.6rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Global Section */
.global-section {
  padding: 12rem 0;
  background-color: var(--color-black-soft);
}

.global-map {
  position: relative;
  margin: 6rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.global-map img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-line {
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.map-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.marker-point {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.marker-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

.marker-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--color-white);
  white-space: nowrap;
  background-color: rgba(0,0,0,0.7);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-top: 0.8rem;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  z-index: 4;
}

.map-marker:hover .marker-label {
  background-color: var(--color-black);
  transform: translateX(-50%) translateY(5px);
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.stat-card {
  background-color: var(--color-gray);
  padding: 3rem 2rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border-left: 2px solid var(--color-gold);
}

.stat-card__number {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 1.4rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process Section */
.process-section {
  padding: 12rem 0;
  background-color: var(--color-black);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  opacity: 0.3;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--color-gold);
  margin: 0 auto 2rem;
  border: 2px solid var(--color-gold);
}

.step-title {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.step-text {
  font-size: 1.4rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 12rem 0;
  background-color: var(--color-black-soft);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.testimonial {
  background-color: var(--color-gray);
  padding: 3rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
}

.testimonial__content {
  font-size: 1.6rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial__author {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 2rem;
}

.author-name {
  font-size: 1.6rem;
  color: var(--color-white);
  font-weight: 600;
}

.author-company {
  font-size: 1.4rem;
  color: var(--color-text-light);
}

/* CTA Section */
.buyers-cta {
  padding: 12rem 0;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  color: var(--color-white);
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.8rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}

.btn--gold:hover {
  background-color: transparent;
  color: var(--color-gold);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn__icon {
  margin-left: 1rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background-color: var(--color-black-soft);
  padding: 8rem 0 4rem;
  color: var(--color-text-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__col {
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  text-decoration: none;
}

.footer-logo__main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.footer-logo__sub {
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__title {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 1rem;
}

.footer__list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: var(--color-gold);
}

.footer__address {
  font-style: normal;
  line-height: 1.6;
}

.footer__address a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__address a:hover {
  color: var(--color-gold);
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.certifications img {
  height: 40px;
  width: auto;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--color-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-gray);
  border: none;
  border-radius: 50%;
  color: var(--color-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-step:nth-child(3)::after {
    display: none;
  }
  
  .process-step:nth-child(4)::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 60px;
    background-color: var(--color-gold);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .benefits-grid,
  .global-stats,
  .process-steps,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .process-step:nth-child(4)::before {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .buyers-hero {
    min-height: 600px;
  }
  
  .buyers-hero__content {
    padding-top: 8rem;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
  }
  
  .back-to-top {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2rem;
  }
}

/* Animation Base Styles */
[data-scroll] {
  will-change: transform, opacity;
}

/* Print Styles */
@media print {
  .cursor,
  .cursor-follower,
  .scroll-indicator,
  .back-to-top,
  .btn {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
    font-size: 12pt;
  }
  
  a {
    text-decoration: underline;
  }
  
  .header,
  .footer {
    background-color: white !important;
    color: black !important;
  }
  
  .footer__address a {
    color: black !important;
  }
}