* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8faf7;
  color: #222;
  overflow-x: hidden;
}

/* ─── HEADER / NAV ─── */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #1b5e20;
  position: relative;
  padding-left: 110px;
  z-index: 2;
  text-decoration: none;
}

.logo span {
  color: #ff9800;
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: url('logo-bg.png') center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #1b5e20;
}

nav a.active {
  color: #1b5e20;
  border-bottom: 2px solid #ff9800;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  margin-bottom: 35px;
  color: #eee;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 38vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)),
    url('hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 50px;
  margin-top: 0;
}

.page-hero-content {
  padding-top: 90px;
}

.page-hero-content h1 {
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-hero-content p {
  font-size: 18px;
  color: #ddd;
  max-width: 600px;
  margin: auto;
}

/* ─── BUTTON ─── */
.btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e68900;
  transform: translateY(-3px);
}

/* ─── SECTIONS ─── */
section {
  padding: 90px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  color: #1b5e20;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
}

/* ─── STATS ─── */
.stats {
  background: #1b5e20;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat h2 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #ffcc80;
}

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1b5e20;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  text-align: center;
  transition: 0.3s;
  border-top: 4px solid #ff9800;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card .icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 18px;
  color: #1b5e20;
  margin-bottom: 8px;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ─── PRODUCTS ─── */
.products {
  background: #fff;
}

.product-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.product-category-nav a {
  color: #1b5e20;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid #1b5e20;
  border-radius: 999px;
  transition: 0.3s;
  font-weight: 500;
}

.product-category-nav a:hover {
  background: #1b5e20;
  color: #fff;
}

.section-subtitle h3 {
  font-size: 28px;
  color: #1b5e20;
  margin: 40px 0 20px;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #f8faf7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card-content {
  padding: 20px;
}

.product-card-content h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.product-card-content p {
  color: #666;
  line-height: 1.6;
}

/* ─── GLOBAL NETWORK ─── */
.global-network {
  background: #fdfdfd;
  padding: 90px 2%;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.map-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f3ef;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65.96%;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-pin-group {
  pointer-events: auto;
  cursor: pointer;
}

.connection-line {
  fill: none;
  stroke: rgba(255, 152, 0, 0.4);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6, 4;
  animation: mapFlow 1.5s linear infinite;
}

@keyframes mapFlow {
  to {
    stroke-dashoffset: -20;
  }
}

.pin-dot {
  transition: transform 0.3s, fill 0.3s;
}

.pin-dot.destination {
  fill: #ff9800;
}

.pin-dot.origin {
  fill: #1b5e20;
}

.pin-pulse {
  fill: none;
  stroke: rgba(255, 152, 0, 0.4);
  stroke-width: 1.5;
  transform-origin: center;
  animation: mapPulse 2s ease-out infinite;
}

.origin-pulse {
  stroke: rgba(27, 94, 32, 0.5);
  stroke-width: 2;
}

.origin-pulse.delay {
  animation-delay: 1s;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.map-label {
  font-size: 10px;
  font-weight: 600;
  fill: #2c3e50;
  font-family: 'Poppins', sans-serif;
  text-anchor: middle;
  opacity: 0.85;
  transition: opacity 0.3s, font-size 0.3s;
  text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff;
}

.label-left {
  text-anchor: start;
}

.label-right {
  text-anchor: end;
}

.origin-label {
  font-size: 11px;
  font-weight: 700;
  fill: #1b5e20;
  letter-spacing: 0.5px;
}

.origin-sublabel {
  font-size: 7px;
  font-weight: 700;
  fill: #222;
  letter-spacing: 0.2px;
}

.map-pin-group:hover .pin-dot {
  transform: scale(1.4);
  transform-origin: center;
}

.map-pin-group:hover .pin-dot.destination {
  fill: #e68900;
}

.map-pin-group:hover .map-label {
  opacity: 1;
  font-size: 11px;
  fill: #111;
}

.origin-group:hover .map-label.origin-label {
  fill: #2e7d32;
}

/* ─── OUR CLIENTS ─── */
.our-clients {
  background: linear-gradient(135deg, #f0f7f0 0%, #fff 50%, #f0f7f0 100%);
  padding: 90px 10%;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 50px auto 0;
}

.client-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 2px solid transparent;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(27, 94, 32, 0.15);
  border-color: #1b5e20;
}

.flag-square {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: block;
}

.client-card span {
  font-size: 15px;
  font-weight: 600;
  color: #1b5e20;
  letter-spacing: 0.3px;
}

/* ─── CONTACT ─── */
.contact {
  background: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-info h3 {
  font-size: 32px;
  color: #1b5e20;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.contact-info p a {
  color: #1b5e20;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info p a:hover {
  color: #ff9800;
}

form {
  background: #f8faf7;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: none;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 15px;
}

form textarea {
  height: 120px;
  resize: none;
}

form button {
  border: none;
  cursor: pointer;
}

/* ─── FOOTER ─── */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* ─── PRODUCT CATEGORIES GRID ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  aspect-ratio: 4/3;
  background: #eee;
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(27,94,32,0.18);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

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

.cat-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(6px);
  color: #1b5e20;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  pointer-events: none;
}

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  nav {
    display: none;
  }

  .navbar {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .flag-square {
    width: 72px;
    height: 52px;
  }
}
