/* ================================================
   THE SCORPION SOURCING — Main Stylesheet
   ================================================ */

@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;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --primary:        #1E3A34;
  --primary-dark:   #142925;
  --primary-light:  #2D5747;
  --primary-muted:  rgba(30, 58, 52, 0.08);
  --gold:           #C9A84C;
  --gold-light:     #E0BF72;
  --gold-muted:     rgba(201, 168, 76, 0.15);
  --cream:          #F5EDD8;
  --cream-dark:     #EAE0C8;
  --bg:             #FAFAF7;
  --dark:           #1A1A1A;
  --text:           #2C2C2C;
  --text-light:     #5C5C5C;
  --text-muted:     #9A9A9A;
  --border:         rgba(30, 58, 52, 0.10);
  --white:          #FFFFFF;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Inter', sans-serif;

  --section-py: 104px;
  --container:  1200px;
  --gutter:     24px;

  --sh-xs: 0 1px 4px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 12px rgba(0,0,0,0.08);
  --sh-md: 0 6px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 12px 48px rgba(0,0,0,0.12);
  --sh-xl: 0 24px 72px rgba(0,0,0,0.16);

  --r-sm:   6px;
  --r:      10px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-full: 9999px;

  --ease: 0.3s ease;
  --ease-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --z-nav: 1000;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; color: var(--primary); font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-light); line-height: 1.85; }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); margin-bottom: 18px; line-height: 1.15; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; max-width: 580px; }
.section-subtitle.wide { max-width: 740px; }

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

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-primary{ color: var(--primary); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: var(--r-full);
  transition: all var(--ease); cursor: pointer; white-space: nowrap; border: none;
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 48px; font-size: 0.94rem; }

.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 16px rgba(30,58,52,0.25); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,58,52,0.35); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--primary); box-shadow: 0 4px 16px rgba(201,168,76,0.28); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); color: var(--primary); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1EBE5D; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); color: var(--white); }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  padding: 22px 0; transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); padding: 13px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 54px; width: auto; }
.navbar-tagline {
  font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500; white-space: nowrap;
  margin-top: 2px; font-family: var(--font-head);
}
.navbar.scrolled .navbar-tagline { color: rgba(30,58,52,0.45); }
.navbar-logo .logo-dark  { display: none; }
.navbar-logo .logo-white { display: block; }
.navbar.scrolled .navbar-logo .logo-dark  { display: block; }
.navbar.scrolled .navbar-logo .logo-white { display: none; }

.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.87rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 8px 15px; border-radius: var(--r-full); color: rgba(255,255,255,0.9);
  transition: all var(--ease);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--primary); background: var(--primary-muted);
}

.navbar-actions { display: flex; align-items: center; gap: 14px; }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px; transition: all var(--ease);
}
.navbar.scrolled .mobile-menu-btn span { background: var(--primary); }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--primary-dark); z-index: 999;
  padding: 100px 32px 40px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 600;
  color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--ease);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-nav-cta { margin-top: 36px; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.65s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(20,41,37,0.90) 0%, rgba(30,58,52,0.72) 55%, rgba(20,41,37,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  opacity: 0; animation: fadeInUp 0.8s 0.2s forwards;
}
.hero-tag::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 5.6rem);
  color: var(--white); line-height: 1.08; margin-bottom: 18px;
  opacity: 0; animation: fadeInUp 0.8s 0.38s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,0.80);
  line-height: 1.75; max-width: 580px; margin-bottom: 32px;
  opacity: 0; animation: fadeInUp 0.8s 0.56s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s 0.72s forwards;
}

/* Stats bar at hero bottom */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(20,41,37,0.72); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 2; opacity: 0; animation: fadeIn 1s 1.1s forwards;
}
.hero-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 16px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 3px; }
.stat-label  { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.60); }

/* Shorter hero for inner pages */
.hero-inner { min-height: 56vh; }
.hero-inner .hero-title { font-size: clamp(2.2rem, 4.5vw, 4rem); }

/* Page banner (alternative) */
.page-banner {
  background: var(--primary); padding: 150px 0 80px;
  position: relative; overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: bannerZoom 12s ease-out forwards;
  will-change: transform;
}
@keyframes bannerZoom { from{transform:scale(1.12)} to{transform:scale(1)} }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(20,41,37,0.88) 0%, rgba(30,58,52,0.70) 55%, rgba(20,41,37,0.60) 100%);
  z-index: 1;
}
.page-banner::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.page-banner::after {
  content: ''; position: absolute; bottom: -20%; left: -3%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-content .breadcrumb { opacity: 0; animation: fadeInUp 0.7s 0.1s forwards; }
.page-banner-content h1 { color: var(--white); margin-bottom: 14px; opacity: 0; animation: fadeInUp 0.8s 0.25s forwards; }
.page-banner-content p  { color: rgba(255,255,255,0.70); font-size: 1.08rem; max-width: 500px; opacity: 0; animation: fadeInUp 0.8s 0.45s forwards; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.breadcrumb-item { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.45); transition: color var(--ease); }
.breadcrumb-item:hover { color: var(--gold); }
.breadcrumb-sep  { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.breadcrumb-item.current { color: var(--gold); }

/* ---- Cards ---- */
/* Service Card */
.service-card {
  background: var(--white); border-radius: var(--r-lg); padding: 44px 38px;
  box-shadow: var(--sh-sm); border: 1px solid var(--border);
  transition: all var(--ease-slow); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary));
  transition: height var(--ease-slow);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }

.service-icon {
  width: 68px; height: 68px; background: var(--gold-muted);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; margin-bottom: 26px; transition: all var(--ease);
  border: 2px solid rgba(201,168,76,0.25);
}
.service-icon svg { width: 32px; height: 32px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon svg { stroke: var(--gold); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 13px; }
.service-card p  { font-size: 0.94rem; }

/* Service Card Image */
.service-card-img {
  width: calc(100% + 76px);
  height: 200px;
  object-fit: cover;
  margin: -44px -38px 28px -38px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }

/* Split image equal sizing */
.split-section .split-image { min-height: 480px; }
.split-section .split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Our Reach map — show full image with consistent curves */
.split-section .split-image.reach-map { min-height: auto; aspect-ratio: 3/4; }
.split-section .split-image.reach-map img { object-fit: cover; border-radius: var(--r-xl); }

/* Product Card */
.product-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; display: block; }
a.product-card { cursor: pointer; }
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
a.product-card:hover .product-card-img { transform: scale(1.07); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,41,37,0.92) 0%, rgba(20,41,37,0.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.product-card-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); margin-bottom: 5px; }
.product-card-sub   { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }


/* Value Card */
.value-card {
  background: var(--white); border-radius: var(--r-xl); padding: 52px 44px;
  text-align: center; box-shadow: var(--sh-md); transition: all var(--ease-slow);
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease-slow);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.value-bg-number {
  font-family: var(--font-head); font-size: 6rem; font-weight: 700;
  color: var(--cream-dark); line-height: 1; position: absolute; top: 16px; right: 24px;
  transition: color var(--ease); user-select: none;
}
.value-card:hover .value-bg-number { color: var(--primary-muted); }
.value-letter { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.value-word   { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.value-card p { font-size: 0.94rem; line-height: 1.82; }

/* Why-us item */
.why-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px 24px; border-radius: var(--r-lg); transition: all var(--ease);
}
.why-item:hover { background: var(--white); box-shadow: var(--sh-md); }
.why-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: var(--gold-muted); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(201,168,76,0.3);
}
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-text h4  { font-size: 1.05rem; margin-bottom: 7px; }
.why-text p   { font-size: 0.92rem; line-height: 1.75; }

/* ---- Split Section ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-xl); transition: transform 0.7s ease; }
.split-image:hover img { transform: scale(1.04); }

.split-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--white); border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 16px;
}
.badge-icon {
  width: 54px; height: 54px; background: var(--gold-muted); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.3);
}
.badge-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 2; }
.badge-text strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--primary); line-height: 1; }
.badge-text span   { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.09em; }

/* ---- Stats Section ---- */
.stats-section { background: var(--cream); padding: 64px 0; }
.stats-inner   { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block    { padding: 40px 24px; text-align: center; border-right: 1px solid var(--cream-dark); }
.stat-block:last-child { border-right: none; }
.stat-block .num { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 7px; }
.stat-block .lbl { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ---- Process Steps ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--primary)); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 88px; height: 88px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold);
  box-shadow: 0 0 0 10px var(--bg); transition: all var(--ease);
}
.process-step:hover .step-num { background: var(--gold); color: var(--primary); transform: scale(1.08); }
.step-title { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; color: var(--primary); margin-bottom: 9px; }
.step-desc  { font-size: 0.87rem; color: var(--text-light); line-height: 1.72; }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--primary); padding: 100px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -8%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(2rem, 4.5vw, 3.6rem); }
.cta-content p  { color: rgba(255,255,255,0.70); font-size: 1.1rem; max-width: 560px; margin: 0 auto 44px; line-height: 1.85; }
.cta-actions    { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-grid  { display: grid; grid-template-columns: 1fr 1.7fr; gap: 40px; align-items: start; }
.contact-form  { background: var(--white); border-radius: var(--r-xl); padding: 56px 48px; box-shadow: var(--sh-lg); }
.form-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.form-group    { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label    { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.form-input, .form-textarea, .form-select {
  padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--bg); transition: all var(--ease); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,58,52,0.07);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-success  {
  display: none; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--r); padding: 14px 18px; margin-top: 14px;
  text-align: center; color: #15803d; font-size: 0.9rem; font-weight: 500;
}

.contact-info-box {
  background: var(--primary); border-radius: var(--r-xl); padding: 48px 40px;
  color: var(--white); height: 100%;
}
.contact-info-box h3 { color: var(--white); font-size: 1.9rem; margin-bottom: 12px; }
.contact-info-box > p { color: rgba(255,255,255,0.68); margin-bottom: 40px; line-height: 1.82; }

.contact-item  { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.ci-icon {
  width: 54px; height: 54px; background: rgba(201,168,76,0.15);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
}
.ci-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-text strong { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.ci-text p, .ci-text a { color: rgba(255,255,255,0.80); font-size: 0.95rem; line-height: 1.65; transition: color var(--ease); }
.ci-text a:hover { color: var(--gold); }

.social-row  { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.social-btn  {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; transition: all var(--ease);
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.8; }

/* ---- Mission/Vision ---- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { padding: 52px 44px; border-radius: var(--r-xl); position: relative; overflow: hidden; }
.mv-card.mission { background: var(--primary); }
.mv-card.vision  { background: var(--cream); }
.mv-card .card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.mv-card.mission .card-tag { color: var(--gold); }
.mv-card.vision  .card-tag { color: var(--primary); }
.mv-card h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 18px; line-height: 1.2; }
.mv-card.mission h2 { color: var(--white); }
.mv-card.vision  h2 { color: var(--primary); }
.mv-card p  { font-size: 0.97rem; line-height: 1.85; }
.mv-card.mission p { color: rgba(255,255,255,0.75); }
.mv-card.vision  p { color: var(--text-light); }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 44px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
}
.timeline-item { position: relative; margin-bottom: 42px; }
.timeline-item::before {
  content: ''; position: absolute; left: -51px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
  box-shadow: 0 0 0 5px var(--bg);
}
.tl-year  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
.tl-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.tl-desc  { font-size: 0.91rem; color: var(--text-light); line-height: 1.72; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white); border-radius: var(--r-xl); padding: 44px;
  box-shadow: var(--sh-md); border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-head); font-size: 7rem;
  color: var(--gold); opacity: 0.3; line-height: 0.8;
  position: absolute; top: 20px; left: 32px;
}
.testi-text   { font-family: var(--font-head); font-size: 1.1rem; font-style: italic; color: var(--primary); line-height: 1.75; margin: 32px 0 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-init  {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--primary); flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.author-role  { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Footer ---- */
.footer { background: var(--primary-dark); color: var(--white); padding: 84px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand img { height: 46px; margin-bottom: 22px; }
.footer-brand p   { color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.82; max-width: 320px; margin-bottom: 30px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-links     { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-size: 0.91rem; color: rgba(255,255,255,0.62);
  transition: color var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.footer-link::before { content: ''; display: block; width: 0; height: 1.5px; background: var(--gold); transition: width var(--ease); border-radius: 2px; }
.footer-link:hover { color: var(--white); }
.footer-link:hover::before { width: 14px; }

.footer-bottom { padding: 24px 0; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy  { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: color var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--ease); animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12) !important; box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
.wa-float svg  { width: 30px; height: 30px; fill: var(--white); }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.wa-tooltip {
  position: absolute; right: 72px; background: var(--dark); color: var(--white);
  font-size: 0.8rem; font-weight: 500; padding: 7px 14px; border-radius: var(--r-full);
  white-space: nowrap; opacity: 0; transition: opacity var(--ease); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---- Legal Pages ---- */
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.8rem; margin-top: 52px; margin-bottom: 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.legal-wrap h2:first-child { border-top: none; margin-top: 0; }
.legal-wrap h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-wrap p  { margin-bottom: 18px; font-size: 0.97rem; }
.legal-wrap ul { list-style: disc; padding-left: 26px; margin-bottom: 18px; }
.legal-wrap ul li { font-size: 0.97rem; color: var(--text-light); line-height: 1.82; margin-bottom: 9px; }
.legal-effective {
  background: var(--primary-muted); border-left: 4px solid var(--primary);
  padding: 14px 20px; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 44px;
}
.legal-effective p { font-size: 0.88rem; font-weight: 500; color: var(--primary); margin: 0; }

/* ---- Scroll Reveal Animations ---- */
.reveal        { opacity: 0; transform: translateY(42px); transition: opacity 0.72s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-left   { opacity: 0; transform: translateX(-42px); transition: opacity 0.72s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-right  { opacity: 0; transform: translateX(42px); transition: opacity 0.72s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; } .d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; } .d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; } .d6 { transition-delay: 0.60s; }

@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes scaleIn   { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }

/* ---- Sub-category note ---- */
.subcategory-note {
  text-align: center; margin-top: 40px; padding: 18px 24px;
  font-size: 0.95rem; color: rgba(30,58,52,0.65); line-height: 1.6;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-style: italic;
}

/* ---- Decorative ---- */
.deco-line { display: block; width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--primary)); border-radius: 2px; margin: 18px 0; }
.deco-line.center { margin: 18px auto; }
.bg-cream   { background: var(--cream); }
.bg-primary { background: var(--primary); }
.bg-white   { background: var(--white); }

/* Product filter */
.filter-row  { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn  { padding: 10px 26px; border-radius: var(--r-full); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; border: 2px solid var(--border); color: var(--text-light); background: var(--white); transition: all var(--ease); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Team card */
.team-card  { text-align: center; padding: 44px 32px; background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-sm); transition: all var(--ease); border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-avatar{ width: 96px; height: 96px; border-radius: 50%; background: var(--primary-muted); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: var(--font-head); font-size: 2.4rem; font-weight: 600; color: var(--primary); border: 4px solid var(--cream-dark); }
.team-avatar svg { stroke: var(--primary); }
.team-avatar-icon { width: 110px; height: 110px; background: linear-gradient(145deg, #F5EDD8 0%, #E8DCC5 100%); border: 3px solid rgba(201,168,76,0.25); }
.team-name  { font-size: 1.3rem; margin-bottom: 5px; }
.team-role  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team-bio   { font-size: 0.91rem; line-height: 1.75; }

/* Utility */
.mb-8  { margin-bottom: 8px;  } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-40 { margin-bottom: 40px; } .mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px;     } .mt-16 { margin-top: 16px;    } .mt-32 { margin-top: 32px;   } .mt-48 { margin-top: 48px; }

/* ---- Why Partner Grid ---- */
.why-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .navbar-nav, .navbar-actions .btn-outline-white { display: none; }
  .mobile-menu-btn { display: flex; }
  .split-section, .mv-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-section .split-image { min-height: 360px; }
  .split-section .split-image.reach-map { min-height: 480px; }
  .stats-inner, .hero-stats-inner, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .hero-stats { display: none; }
  .contact-form { padding: 36px 28px; }
  .why-partner-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-card { padding: 32px 24px; }
  .service-card-img { width: calc(100% + 48px); margin: -32px -24px 24px -24px; height: 180px; }
}
@media (max-width: 640px) {
  :root { --section-py: 56px; --gutter: 18px; }
  .navbar-logo img { height: 44px; }
  .navbar-tagline { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand img { height: 38px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-lg { padding: 14px 28px; font-size: 0.88rem; }
  .btn-lg { max-width: 100%; box-sizing: border-box; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .contact-form { padding: 20px 14px; }
  .mv-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.4rem; }
  .product-card { min-height: 280px; }
  .service-card { padding: 24px 20px; }
  .service-card-img { width: calc(100% + 40px); margin: -24px -20px 20px -20px; height: 160px; }
  .split-section .split-image { min-height: 280px; }
  .split-section .split-image.reach-map { min-height: 380px; }
  .split-section { gap: 40px; }
  .page-banner { padding: 110px 0 50px; }
  .page-banner-bg { animation: bannerZoomMobile 10s ease-out forwards; }
  @keyframes bannerZoomMobile { from{transform:scale(1.08)} to{transform:scale(1)} }
  .page-banner-content h1 { font-size: 1.6rem; line-height: 1.3; }
  .page-banner-content p { font-size: 0.95rem; }
  .contact-info-box { padding: 32px 24px; }
  .contact-info-box h3 { font-size: 1.5rem; }
  .value-card { padding: 36px 28px; }
  .filter-row { gap: 6px; justify-content: center; }
  .filter-btn { padding: 8px 18px; font-size: 0.78rem; }
  .team-card { padding: 32px 20px; }
  .process-step { padding: 0 10px; }
  .step-num { width: 68px; height: 68px; font-size: 1.5rem; }
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.86rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-subtitle { font-size: 0.95rem; }
}
