:root {
  --navy: #081D3A;
  --navy-light: #0d2d5e;
  --navy-mid: #112444;
  --orange: #FF6A00;
  --orange-light: #FF8C3A;
  --orange-glow: rgba(255,106,0,0.3);
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --glass: rgba(8,29,58,0.7);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-orange: 0 10px 40px rgba(255,106,0,0.25);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* loader styles removed */

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 75px;
  background: rgba(8,29,58,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(8,29,58,0.92);
  border-bottom-color: rgba(255,106,0,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 42px; width: auto;
  transition: opacity 0.3s, filter 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; }
.logo-mobile {
  display: none;
  /* height: auto; width: auto;
  margin-bottom: 0.5rem; */
}
.hero-icon-watermark {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  z-index: 2; pointer-events: none;
  opacity: 0.07;
  animation: heroIn 1.5s ease 0.8s both;
}
.hero-icon-watermark img { width: clamp(200px, 22vw, 340px); height: auto;  }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--white-80); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 8px 20px; border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  box-shadow: var(--shadow-orange) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 75px; left: 0; right: 0;
  background: rgba(8,29,58,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column; gap: 1.5rem;
  border-bottom: 1px solid var(--white-10);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white-80); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--white-10); padding-bottom: 1rem;
}

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8,29,58,0.92) 0%, rgba(8,29,58,0.6) 60%, rgba(8,29,58,0.3) 100%),
    url('./images/Hero-Bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--orange); opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%;
  max-width: 800px;
  animation: heroIn 1.2s ease 0.3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white-05); border: 1px solid var(--orange);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  color: var(--orange); text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 1.5rem;
  animation: heroIn 1.2s ease 0.5s both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.0rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 1.5rem;
}
.hero-title span { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-80); line-height: 1.8;
  max-width: 560px; margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white); padding: 14px 32px;
  border: none; border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white); padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroIn 1.2s ease 1.2s both;
}
.hero-scroll span {
  font-size: 0.7rem; letter-spacing: 3px; color: var(--white-60);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}
.hero-stats {
  position: absolute; bottom: 3rem; right: 8%;
  display: flex; gap: 2rem; z-index: 2;
  animation: heroIn 1.2s ease 0.9s both;
}
.hero-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-top: 2px solid var(--orange);
  backdrop-filter: blur(10px);
  border-radius: 6px;
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800; color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; color: var(--white-60);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

/* ─── SECTION COMMON ─── */
section { padding: 100px 8%; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--white-60); font-size: 1rem;
  line-height: 1.8; max-width: 560px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 1rem 0;
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ABOUT ─── */
#about { background: var(--navy-mid); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-wrap::before {
  content: ''; position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  z-index: 1; border-radius: 4px;
}
.about-img-wrap::after {
  content: ''; position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  z-index: 1; border-radius: 4px;
}
.about-exp-badge {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.2rem 1.5rem; border-radius: 8px;
  z-index: 2; box-shadow: var(--shadow-orange);
}
.about-exp-badge .num {
  font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.about-exp-badge .txt { font-size: 0.75rem; font-weight: 500; }
.about-text p { color: var(--white-80); line-height: 1.9; margin-bottom: 1.5rem; }
.about-counters {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.counter-card {
  padding: 1.5rem; text-align: center;
  border: 1px solid var(--white-10);
  border-top: 3px solid var(--orange);
  border-radius: 8px;
  background: var(--white-05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.counter-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.counter-label {
  font-size: 0.75rem; color: var(--white-60);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
}

/* ─── SERVICES ─── */
#services { background: var(--navy); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-sub { margin: 0 auto; }
.services-header .divider { margin: 1rem auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-bottom: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: white;
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,106,0,0.04); }
.service-card:hover::before { width: 100%; }
.service-card:hover .service-icon { background: var(--orange); }
.service-icon {
    color: var(--orange);
  width: 60px; height: 60px; border-radius: 12px;
  background: rgba(255,106,0,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-icon svg { width: 28px; height: 28px; }
.service-icon::hover svg { stroke: white; fill: white; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; }

/* ─── PRODUCT / COFFEE ─── */
#product {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
}
.product-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.product-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.product-img-wrap img {
  width: 100%; height: 550px; object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
.product-img-wrap:hover img { transform: scale(1.04); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,0,0.8) 0%, transparent 60%);
}
.product-label {
  position: absolute; bottom: 2rem; left: 2rem;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
}
.product-text .section-tag { color: var(--orange); }
.product-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; margin-bottom: 1rem; line-height: 1.15;
}
.product-text p { color: var(--white-80); line-height: 1.8; margin-bottom: 2rem; }
.product-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
  margin-bottom: 2rem;
}
.product-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--white-80);
}
.feature-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ─── WHY CHOOSE US ─── */
#why { background: var(--navy-mid); }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-header .section-sub { margin: 0 auto; }
.why-header .divider { margin: 1rem auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  padding: 2rem 1.5rem; text-align: center;
  border-radius: 10px; border: 1px solid var(--white-10);
  background: var(--white-05);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,106,0,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(255,106,0,0.3); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,106,0,0.1); border: 2px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: rgba(255,106,0,0.2);
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.83rem; color: var(--white-60); line-height: 1.7; }

/* ─── WORLD MAP / NETWORK ─── */
#network { background: var(--navy); overflow: hidden;}

.network-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.network-text .section-sub { margin-bottom: 2rem; }
.trade-routes { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.route-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.route-item:hover { border-color: var(--orange); background: rgba(255,106,0,0.05); }
.route-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: pulse-dot 2s infinite; }
.route-item span { color: var(--white-80); }
.map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 350px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  margin-top: 2rem;
  contain: paint;
}
.world-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  clip-path: inset(10px);
}

/* ─── TESTIMONIALS ───
#testimonials { background: var(--navy-mid); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .divider { margin: 1rem auto; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card {
  min-width: 100%; padding: 0 1rem;
}
.tcard {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px; padding: 2.5rem;
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.tcard::before {
  content: '"';
  position: absolute; top: 1.5rem; left: 2rem;
  font-size: 6rem; line-height: 0.5;
  color: var(--orange); opacity: 0.2;
  font-family: Georgia, serif;
}
.tcard-text {
  font-size: 1rem; line-height: 1.8;
  color: var(--white-80); font-style: italic;
  margin-bottom: 1.5rem;
}
.tcard-author { display: flex; align-items: center; gap: 1rem; }
.tcard-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}
.tcard-name { font-weight: 700; font-size: 0.95rem; }
.tcard-role { font-size: 0.8rem; color: var(--orange); }
.stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 1rem; }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white-05); border: 1px solid var(--white-10);
  color: var(--white); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white-10); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; } */

/* ─── INQUIRY FORM ─── */

#inquiry { background: var(--navy); }
.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.inquiry-card,
.inquiry-form {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 2.5rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.inquiry-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.inquiry-header .section-tag {
  display: inline-block;
  margin-bottom: 1rem;
}

.inquiry-header .section-title {
  margin-bottom: 1rem;
}

.inquiry-header .divider {
  margin: 1.2rem auto;
}

.inquiry-header .section-sub {
  max-width: 700px;
  margin: 0 auto;
}
.inquiry-info h2 { margin-bottom: 1.5rem; }
.inquiry-info p { color: var(--white-80); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--white-80);
  transition: border-color 0.3s;
  text-decoration: none;
}
.contact-item:hover { border-color: var(--orange); }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,106,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.trust-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.contact-item,
.contact-item a {
  color: var(--white-80);
  text-decoration: none;
}

.contact-item:hover a {
  color: var(--orange);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--white-80);
  font-size: 0.92rem;
}
.trust-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  margin-top: 2rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }
.next-steps {
  margin-top: 2rem;
}

.next-steps h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,106,0,0.15);
  border: 1px solid rgba(255,106,0,0.3);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  color: var(--white-80);
  font-size: 0.88rem;
  line-height: 1.7;
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--white-80); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: 6px; padding: 12px 16px;
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.1);
}
.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.35rem;
  color: #ffb38a;
  font-size: 0.82rem;
}
.form-message {
  margin-top: 1.2rem;
  min-height: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-80);
}
.form-message.success { color: #92ffb9; }
.form-message.error { color: #ffb38a; }
input.invalid,
select.invalid,
textarea.invalid {
  border-color: rgba(255,106,0,0.9);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}


/* ─── FOOTER ─── */
footer {
  background: #040f1f;
  border-top: 1px solid rgba(255,106,0,0.2);
  padding: 4rem 8% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 1px;
  margin-bottom: 1rem; display: block;
}
.footer-brand .logo span { color: var(--orange); }
.brand-link {
  display: inline-block; margin-bottom: 1.2rem;
}
.brand-logo {
  height: 80px; width: auto;
}
.footer-brand p { color: var(--white-60); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--white-05); border: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 1.2rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,106,0,0.3);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: var(--white-60); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { color: var(--white-60); font-size: 0.83rem; line-height: 1.6; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--white-10);
  font-size: 0.8rem; color: var(--white-60);
}
.footer-bottom a { color: var(--orange); text-decoration: none; }
.footer-contact-item a {
    color: var(--white-60);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--orange);
}

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.8); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  section { padding: 70px 5%; }
  .hero-icon-watermark {
    display: none;
  }
  .hero-badge {margin-top: 0px;}
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: auto; width: 100%; }
  .product-inner { grid-template-columns: 1fr; gap: 3rem; }
  .network-inner { grid-template-columns: 1fr; gap: 3rem; }
  .network-text .section-sub { font-size: 0.95rem; }
  .trade-routes { gap: 0.8rem; }
  .route-item { padding: 0.9rem 1rem; font-size: 0.8rem; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { display: none; }
  .hero-btns { flex-direction: column; width: max-content; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-counters { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .map-wrap { min-height: 300px; }
  .world-map-svg { min-height: 280px; }
  .network-text .section-title { font-size: 1.8rem; }
  .network-text .section-sub { font-size: 0.9rem; line-height: 1.6; }
  .route-item { padding: 0.8rem 0.9rem; font-size: 0.75rem; gap: 0.8rem; }
  .route-dot { width: 8px; height: 8px; }
}
