/* ═══════════════════════════════════════════════════════
   K SERVICE TRADING — Premium Landing Page
   Design System & Global Styles
   ═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand Colors ── */
  --clr-deep:       #0a1628;
  --clr-navy:       #0f2140;
  --clr-midnight:   #162a4a;
  --clr-forest:     #1a3a2a;
  --clr-forest-deep:#0d2118;
  --clr-gold:       #c9a96e;
  --clr-gold-light: #dfc48b;
  --clr-gold-dim:   #a78b52;
  --clr-cream:      #f8f5ef;
  --clr-ivory:      #faf8f4;
  --clr-white:      #ffffff;
  --clr-text:       #2c3e50;
  --clr-text-light: #6b7c93;
  --clr-text-muted: #94a3b8;
  --clr-border:     #e2ddd4;
  --clr-surface:    #f0ece4;

  /* ── Typography ── */
  --ff-heading: 'Playfair Display', 'Georgia', serif;
  --ff-body:    'Inter', -apple-system, sans-serif;
  --ff-accent:  'Cormorant Garamond', 'Georgia', serif;

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* ── Layout ── */
  --container: 1280px;
  --nav-height: 80px;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ═══ PRELOADER ═══ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(201, 169, 110, 0.5));
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: preloaderFill 2s var(--ease) forwards;
}

.preloader-text {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--clr-gold-dim);
  text-transform: uppercase;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes preloaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* ═══ NAVIGATION ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-k {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--clr-white);
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover { color: var(--clr-gold); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
  background: var(--clr-gold);
  color: var(--clr-deep) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
}

.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
  background: var(--clr-gold-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.4) 40%,
    rgba(10, 22, 40, 0.6) 70%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--clr-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.badge-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--clr-gold-dim);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-title-accent {
  color: var(--clr-gold);
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 3rem;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--clr-gold);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-deep);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

.btn-gold:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-full { width: 100%; }

/* ═══ SECTION COMMON ═══ */
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-deep);
  margin-bottom: var(--space-md);
}

.accent { color: var(--clr-gold); font-style: italic; }
.accent-gold { color: var(--clr-gold-light); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 640px;
  line-height: 1.7;
}

.section-desc {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* ═══ ABOUT ═══ */
.about { background: var(--clr-ivory); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1.5px solid var(--clr-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

.value-icon svg { width: 20px; height: 20px; }

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 0.15rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

.about-visual { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img-wrapper:hover .about-img { transform: scale(1.03); }

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

.about-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--clr-deep);
  color: var(--clr-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.floating-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}

.floating-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ═══ VISION ═══ */
.vision-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
}

.vision-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(26, 58, 42, 0.85));
}

.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.vision-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-xl);
  transition: all 0.5s var(--ease);
}

.vision-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
}

.vision-card-icon {
  width: 60px;
  height: 60px;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

.vision-card-icon svg { width: 100%; height: 100%; }

.vision-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.vision-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ═══ SERVICES ═══ */
.services { background: var(--clr-cream); }

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

.service-card {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--clr-border);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.service-card-featured::before { display: none; }

.service-card-img {
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.8s var(--ease);
}

.service-card-featured:hover .service-card-img img { transform: scale(1.05); }

.service-card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--clr-white);
}

.service-icon svg { width: 26px; height: 26px; }

.eco-icon { background: linear-gradient(135deg, #2d8b5e, #1a6b42); }
.trade-icon { background: linear-gradient(135deg, #4a6fa5, #365a8a); }
.duty-icon { background: linear-gradient(135deg, #8b6b2d, #6b5222); }
.farm-icon { background: linear-gradient(135deg, #5a8b2d, #427020); }
.counsel-icon { background: linear-gradient(135deg, #6b4fa5, #503b8a); }
.invest-icon { background: linear-gradient(135deg, #a54f4a, #8a3b36); }
.entertain-icon { background: linear-gradient(135deg, #4aa5a0, #368a85); }

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 0.75rem;
}

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

.service-link {
  display: inline-block;
  margin-top: auto;
  padding-top: var(--space-md);
  color: var(--clr-gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s var(--ease);
}

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

/* ═══ ECOTOURISM ═══ */
.ecotourism {
  background: var(--clr-deep);
  position: relative;
  overflow: hidden;
}

.eco-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
}

.light .section-tag { color: var(--clr-gold-light); }
.light .section-subtitle { color: rgba(255, 255, 255, 0.6); }
.light .section-title { color: var(--clr-white); }

.eco-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: var(--space-2xl);
}

.eco-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s var(--ease);
}

.eco-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.eco-feature-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.eco-feature h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.eco-feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.eco-cta-inner {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.eco-cta-content h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.eco-cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ═══ SMART FARM ═══ */
.smartfarm { background: var(--clr-ivory); }

.smartfarm-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.smartfarm-visual { position: relative; }

.smartfarm-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--clr-white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-deep);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sf-badge-icon {
  width: 18px;
  height: 18px;
  color: var(--clr-gold-dim);
}

.smartfarm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.smartfarm-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text);
}

.sf-check {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 20px;
}

/* ═══ PARTNERS ═══ */
.partners { background: var(--clr-cream); overflow: hidden; }

.partners-marquee {
  margin-bottom: var(--space-2xl);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-item {
  flex-shrink: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 200px;
  transition: all 0.3s var(--ease);
}

.partner-item:hover {
  border-color: var(--clr-gold);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.15);
}

.partner-name {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-deep);
}

.partner-loc {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-category {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--clr-border);
}

.partner-category h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--clr-deep);
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner-tags span {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--clr-surface);
  border-radius: 20px;
  color: var(--clr-text-light);
  white-space: nowrap;
}

/* ═══ HERITAGE ═══ */
.heritage {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.heritage-bg {
  position: absolute;
  inset: 0;
}

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

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88), rgba(26, 58, 42, 0.82));
}

.heritage-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.light-tag { color: var(--clr-gold-light); }
.light-title { color: var(--clr-white); }

.heritage-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.heritage-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.heritage-site {
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 30px;
  color: var(--clr-gold-light);
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
}

.heritage-site:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--clr-gold);
}

/* ═══ ADVISORY ═══ */
.advisory { background: var(--clr-ivory); }

.advisory-banner {
  background: linear-gradient(135deg, var(--clr-deep), var(--clr-navy));
  border-radius: 24px;
  padding: var(--space-2xl);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
}

.advisory-quote {
  font-family: var(--ff-accent);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--clr-gold);
  text-align: center;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
  font-weight: 400;
}

.advisory-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advisory-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.adv-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--clr-gold);
}

.adv-icon svg {
  width: 100%;
  height: 100%;
}

.advisory-item h4 {
  color: var(--clr-white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.advisory-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ═══ COOPERATION BENEFITS ═══ */
.benefits-section { background: var(--clr-ivory); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--clr-border);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--clr-gold), var(--clr-gold-light));
  transition: height 0.5s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--clr-gold-dim);
}

.benefit-card:hover::before { height: 100%; }

.benefit-card-highlight {
  background: linear-gradient(135deg, var(--clr-deep), var(--clr-navy));
  border-color: rgba(201, 169, 110, 0.3);
}

.benefit-card-highlight h4 { color: var(--clr-gold-light); }
.benefit-card-highlight p { color: rgba(255, 255, 255, 0.65); }
.benefit-card-highlight .benefit-number { color: var(--clr-gold); opacity: 0.4; }

.benefit-number {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 0.4rem;
}

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

/* ═══ F&B SECTION ═══ */
.fnb-section { background: var(--clr-cream); }

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

.fnb-visual { position: relative; }

.fnb-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.fnb-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--clr-white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-deep);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ═══ LIFESTYLE & WELLNESS ═══ */
.lifestyle-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
}

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

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88), rgba(26, 58, 42, 0.82));
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.lifestyle-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.lifestyle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lifestyle-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 30px;
  color: var(--clr-gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.lifestyle-feature svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold);
}

.lifestyle-feature:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

/* ═══ STRATEGIC COOPERATION ═══ */
.strategic-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.strategic-bg {
  position: absolute;
  inset: 0;
}

.strategic-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.strategic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(15, 33, 64, 0.88));
}

.strategic-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.strategic-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.strategic-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategic-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.strategic-point svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--clr-gold);
}

/* ═══ WHY CHOOSE US ═══ */
.why-section { background: var(--clr-cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--clr-border);
  transition: all 0.5s var(--ease);
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--clr-gold);
}

.why-number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 0.5rem;
}

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

/* ═══ CONTACT ═══ */
.contact { background: var(--clr-ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--clr-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 0.15rem;
}

.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
}

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

.contact-form-wrapper {
  background: var(--clr-white);
  border-radius: 20px;
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  background: var(--clr-ivory);
  color: var(--clr-text);
  transition: all 0.3s var(--ease);
  outline: none;
}

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

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

/* ═══ FOOTER ═══ */
.footer {
  background: var(--clr-deep);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-tagline {
  font-family: var(--ff-accent);
  color: var(--clr-gold-dim) !important;
  font-style: italic;
  margin-top: 0.5rem !important;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--clr-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

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

/* ═══ ANIMATIONS ═══ */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="fade-left"] { transform: translateX(40px); }

[data-anim].visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-features { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-details { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--clr-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.5s var(--ease);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

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

  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-link { font-size: 1.1rem; color: var(--clr-white); }

  .section-grid { grid-template-columns: 1fr; gap: var(--space-xl); }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-lg);
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-content { padding-top: calc(var(--nav-height) + 2rem); }

  .service-card-featured { grid-column: auto; grid-template-columns: 1fr; }

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

  .eco-features { grid-template-columns: 1fr; }
  .eco-cta-inner { flex-direction: column; text-align: center; }

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

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

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

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

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

  .fnb-img { height: 300px; }

  .advisory-details { grid-template-columns: 1fr; }

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

  .about-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -2rem;
    margin-left: 1rem;
    display: inline-block;
  }

  .about-img { height: 350px; }
  .smartfarm-img { height: 300px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .container { padding: 0 1.25rem; }
}

/* ═══ CURSOR FOLLOWER ═══ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: transform 0.15s var(--ease), opacity 0.3s;
  opacity: 0;
}

.cursor-dot.visible { opacity: 1; }

.cursor-dot.hovering {
  transform: scale(4);
  background: var(--clr-gold-light);
}

@media (max-width: 768px) {
  .cursor-dot { display: none; }
}

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--clr-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
  background: var(--clr-gold);
  transform: translateY(-2px);
}

.back-to-top svg:first-child {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  position: relative;
  z-index: 2;
}

.back-to-top:hover svg:first-child { color: var(--clr-deep); }

.progress-ring {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke: var(--clr-gold);
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  transition: stroke-dashoffset 0.1s;
}

/* ═══ GALLERY SECTION ═══ */
.gallery-section {
  background: var(--clr-deep);
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.gallery-section .section-tag { color: var(--clr-gold-light); }
.gallery-section .section-title { color: var(--clr-white); }
.gallery-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll:active { cursor: grabbing; }

.gallery-track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  width: max-content;
}

.gallery-card {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-card:hover img { transform: scale(1.08); }

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
  transform: translateY(20px);
  opacity: 0.7;
  transition: all 0.5s var(--ease);
}

.gallery-card:hover .gallery-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-card-location {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--clr-gold);
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-card-overlay h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-white);
  margin: 0.35rem 0;
  font-weight: 600;
}

.gallery-card-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gallery-card {
    width: 300px;
    height: 400px;
  }
}

/* ═══ ACTIVE NAV LINK ═══ */
.nav-link.active {
  color: var(--clr-gold);
}

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

/* ═══ SELECTION ═══ */
::selection {
  background: var(--clr-gold);
  color: var(--clr-deep);
}

/* ═══ FOCUS STYLES ═══ */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

/* ═══ SMOOTH IMAGE LOADING ═══ */
img {
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}

img[loading] {
  opacity: 0;
}

/* ═══ VIETNAM TOURISM MARKET ═══ */
.vietnam-market {
  background: linear-gradient(170deg, var(--clr-deep) 0%, #0e1f3a 50%, #13284a 100%);
  position: relative;
  overflow: hidden;
}

.vietnam-market::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vietnam-market::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.market-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.market-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.market-stat:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-6px);
}

.market-stat:hover::before {
  opacity: 1;
}

.market-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--clr-gold);
  opacity: 0.7;
}

.market-stat-icon svg {
  width: 100%;
  height: 100%;
}

.market-stat-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: inline;
}

.market-stat-suffix {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: 0.8;
}

.market-stat-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.6);
  margin-top: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .market-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .market-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .market-stat {
    padding: 1.5rem 1rem;
  }
  .market-stat-number {
    font-size: 2.5rem;
  }
}

/* ═══ STRATEGIC COOPERATION ENHANCED ═══ */
.strategic-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strategic-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin: 1rem 0;
  text-transform: uppercase;
}

.strategic-line-gold {
  display: block;
  color: var(--clr-gold);
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.2);
}

.strategic-line-white {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.4em;
  letter-spacing: 0.3em;
  margin: 0.2em 0;
}

.strategic-tagline {
  font-family: var(--ff-accent);
  font-size: 1.3rem;
  color: rgba(248, 245, 239, 0.7);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.strategic-content-centered .strategic-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.strategic-content-centered .strategic-points {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.strategic-cta-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), #d4b375);
  color: var(--clr-deep);
  border: none;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
  background: linear-gradient(135deg, #d4b375, var(--clr-gold));
}

.btn-outline {
  background: transparent;
  color: var(--clr-ivory);
  border: 1.5px solid rgba(248, 245, 239, 0.3);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(201, 169, 110, 0.06);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .strategic-hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
  .strategic-tagline {
    font-size: 1rem;
  }
  .strategic-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
