:root {
  --green-deep: #1E4D2B;
  --green-mid: #2D6A3F;
  --green-light: #4A8F5F;
  --green-pale: #C8E6C9;
  --green-mist: #EEF6EF;
  --cream: #FAF8F2;
  --warm-white: #FFFFFF;
  --tan: #E8E0D0;
  --text-dark: #1A2A1E;
  --text-mid: #3D5240;
  --text-light: #6B836F;
  --accent-gold: #B8955A;
  --accent-gold-light: #F0E4C8;
  --border: #D4E4D6;
  --shadow: 0 4px 32px rgba(30,77,43,0.06);
  --shadow-lg: 0 16px 64px rgba(30,77,43,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--green-deep);
}

p {
  font-weight: 300;
  color: var(--text-mid);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  display: inline-block;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.3px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}



.mx-auto {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-deep);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(30,77,43,0.18);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,77,43,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .5px;
  border: 1.5px solid var(--green-deep);
  transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: var(--green-deep);
  color: white;
  box-shadow: 0 6px 20px rgba(30,77,43,0.15);
  transform: translateY(-2px);
}

/* ── NAV BAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 228, 214, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav.scrolled {
  background: rgba(250, 248, 242, 0.95);
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px; /* Reduced logo size */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.scrolled .nav-inner {
  height: 65px; /* Reduced scrolled height */
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 80px; /* Reduced to 80px */
  width: auto;
  display: block;
  transition: height 0.4s;
}

nav.scrolled .logo-img {
  height: 65px; /* Reduced scrolled logo size */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--green-deep);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Picker */
.lang-picker {
  position: relative;
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: var(--green-mist);
  border-color: var(--green-light);
  color: var(--green-deep);
}

.globe-icon, .chevron-icon {
  flex-shrink: 0;
}

.chevron-icon {
  transition: transform 0.3s;
}

.lang-picker.open .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1100;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 13px;
  text-align: left;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-item:hover {
  background: var(--green-mist);
  color: var(--green-deep);
}

.lang-item.active {
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-mist);
}

/* Mobile toggle button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--green-deep);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250, 248, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 120px 40px 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  transition: padding-left 0.3s, color 0.3s;
  display: block;
}

.mobile-menu a:hover {
  padding-left: 10px;
  color: var(--accent-gold);
}

.mobile-lang-section {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.mobile-lang-section p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mob-lang-btn {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.mob-lang-btn:hover, .mob-lang-btn.active {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}

.mobile-menu-cta {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 30%, #145A32 0%, #0B2E24 40%, #081a14 100%);
  padding-top: 80px;
}

#hero-globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto; /* enable interactive globe grab/tilt */
}


.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #081a14 0%,
    rgba(8, 26, 20, 0.95) 35%,
    rgba(8, 26, 20, 0.7) 60%,
    rgba(8, 26, 20, 0.2) 80%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}


.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--green-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-title {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

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

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  gap: 0;
}

.stat-item {
  padding: 0 36px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  transition: transform 0.3s;
}

.stat-item:hover .stat-num {
  transform: scale(1.08);
  color: #FFFFFF;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: .5px;
  font-weight: 500;
}


/* ── OUR STORY SECTION ── */
section {
  padding: 120px 0;
}

.about-intro {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-intro-text a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
}

.about-intro-text a:hover {
  color: var(--accent-gold);
  border-color: var(--green-deep);
  gap: 10px;
}

.about-bowl-wrap {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-bowl-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

.about-bowl-img {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.about-bowl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-bowl-wrap:hover .about-bowl-img img {
  transform: scale(1.06);
}

/* ── PORTFOLIO / SHOWCASE ── */
.products-showcase {
  background: var(--cream);
  padding: 0 0 100px 0;
  border-bottom: 1px solid var(--border);
}

/* Ticker Banner */
.ticker-banner {
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  z-index: 10;
  position: relative;
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
}

.ticker-content {
  display: inline-block;
  animation: marquee 35s linear infinite;
}

.ticker-content span {
  display: inline-block;
  padding-right: 60px;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Dark Upper Hero Section */
.psc-hero-banner {
  background-color: #0b150e;
  position: relative;
  padding: 90px 0 190px 0; /* extra padding to allow card overlap */
  overflow: hidden;
}

.psc-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1595974482597-4b8da8879bc5?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 1;
}

.psc-hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(11,21,14,0.78) 0%, rgba(11,21,14,0.94) 100%);
  z-index: 2;
}

.psc-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.psc-hero-text {
  max-width: 650px;
}

.psc-hero-text .section-title {
  margin-top: 12px;
  color: #ffffff !important;
}

.psc-hero-text .section-desc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.psc-hero-action {
  flex-shrink: 0;
  margin-bottom: 24px;
}

.gold-btn {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 14px rgba(184, 149, 90, 0.25) !important;
  font-weight: 600 !important;
}

.gold-btn:hover {
  background: #a3824b !important;
  border-color: #a3824b !important;
  transform: translateY(-2px) !important;
}

/* Tabs container overrides */
.division-tabs-wrapper {
  margin-top: 36px;
}

.division-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 40px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tab-btn:hover {
  color: white;
}

.tab-btn.active {
  background: var(--accent-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(184, 149, 90, 0.35);
}

/* Overlapping cards container */
.psc-cards-container {
  margin-top: -130px; /* pull cards up over the dark hero */
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .psc-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .psc-hero-action {
    margin-bottom: 0;
    width: 100%;
  }
  .psc-hero-action .orange-btn {
    width: 100%;
    text-align: center;
  }
  .psc-cards-container {
    margin-top: -90px;
  }
  .psc-hero-banner {
    padding: 70px 0 140px 0;
  }
}

/* Grid display and switches */
.products-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-grid.active {
  display: grid;
  animation: tabFadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#machinery-grid {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

#machinery-grid .psc-card {
  grid-column: 2 / 3;
}

/* Cards style */
.psc-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.psc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 77, 43, 0.08), 0 0 0 1px rgba(184, 149, 90, 0.15);
  border-color: rgba(74, 143, 95, 0.3);
}

.psc-img-wrap {
  height: 250px;
  background: #F5F2EB;
  position: relative;
  overflow: hidden;
}

.psc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.psc-badge-strip {
  background: #a85545; /* rust/terracotta strip from the screenshot */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.machinery-badge-strip {
  background: #b08945; /* golden/bronze badge strip for excavator */
}

.psc-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.psc-local {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.psc-name {
  font-size: 26px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.15;
  transition: color 0.3s;
}

.psc-card:hover .psc-name {
  color: var(--green-mid);
}

.psc-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.psc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 228, 214, 0.5);
}

.psc-benefits span {
  font-size: 11px;
  font-weight: 500;
  background: var(--green-mist);
  color: var(--green-mid);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(74, 143, 95, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.psc-card:hover .psc-benefits span {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 143, 95, 0.1);
  color: var(--green-deep);
  border-color: rgba(74, 143, 95, 0.35);
  background: var(--warm-white);
}

.psc-card .psc-benefits span:nth-child(1) { transition-delay: 0s; }
.psc-card .psc-benefits span:nth-child(2) { transition-delay: 0.05s; }
.psc-card .psc-benefits span:nth-child(3) { transition-delay: 0.1s; }

.machinery-benefits span {
  background: rgba(184, 149, 90, 0.08);
  color: var(--accent-gold);
  border-color: rgba(184, 149, 90, 0.2);
}

/* ── WHY CHOOSE US / OUR PROCESS ── */
.why-choose-us {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}

.wcu-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.process-flow-container {
  position: relative;
  margin-top: 60px;
}

.connector {
  position: absolute;
  color: rgba(74, 143, 95, 0.45);
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s;
}

.connector.horizontal-1 {
  top: calc(25% - 10px);
  left: calc(50% - 30px);
  width: 60px;
  height: 20px;
}

.connector.vertical {
  top: calc(50% - 30px);
  left: calc(75% - 10px);
  width: 20px;
  height: 60px;
}

.connector.horizontal-2 {
  top: calc(75% - 10px);
  left: calc(50% - 30px);
  width: 60px;
  height: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.process-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(30, 77, 43, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.process-card-left {
  flex: 1;
}

.process-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 8px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.process-card-left h3 {
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.process-card-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-card-right {
  color: var(--green-light);
  opacity: 0.6;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effects */
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}

.process-card:hover .process-card-right {
  color: var(--green-mid);
  opacity: 1;
}

/* Explicit positioning on desktop to create a circular flow 1 -> 2 -> 3 (bottom-right) -> 4 (bottom-left) */
@media (min-width: 901px) {
  .process-grid .process-card:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }
  .process-grid .process-card:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }
  .process-grid .process-card:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
  }
  .process-grid .process-card:nth-child(4) {
    grid-row: 2;
    grid-column: 1;
  }
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .connector {
    display: none;
  }
  .process-card {
    padding: 30px 24px;
  }
}

/* ── LOGISTICS SERVICES SECTION ── */
.logistics-services {
  background: var(--cream);
  padding: 80px 0;
}

/* ── Full-image Hero Banner ── */
.logistics-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.logistics-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('logistics_banner_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.6s ease;
}

.logistics-banner:hover .logistics-banner-bg {
  transform: scale(1.03);
}

.logistics-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 28, 16, 0.88) 0%,
    rgba(10, 28, 16, 0.65) 55%,
    rgba(10, 28, 16, 0.25) 100%
  );
  z-index: 2;
}

.logistics-banner-content {
  position: relative;
  z-index: 3;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.section-label-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-label-gold::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.logistics-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 50px);
  color: white;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.3px;
}

.btn-terracotta {
  display: inline-block;
  background: rgba(184, 149, 90, 0.95);
  color: #1a1a0e;
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .3s ease;
  white-space: nowrap;
  width: fit-content;
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.btn-terracotta:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* ── Cards Grid ── */
.logistics-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Each card — explicit flex column to force vertical stacking */
.logistics-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(30, 77, 43, 0.06);
  transition: transform 0.38s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.38s cubic-bezier(0.25,0.8,0.25,1);
  overflow: visible;
}

.logistics-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(30, 77, 43, 0.16);
}

/* Image wrapper — always full width, never shrinks */
.lc-img-wrap {
  display: block;
  width: 100%;
  flex-shrink: 0;
  height: 230px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}

.lc-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,0.8,0.25,1);
}

.logistics-card:hover .lc-img-wrap img {
  transform: scale(1.07);
}

/* Icon badge — direct child of card, overlaps image/body boundary */
.lc-icon-badge {
  position: absolute;
  top: calc(230px - 26px);  /* image height minus half badge height */
  left: 22px;
  width: 52px;
  height: 52px;
  background: var(--warm-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5453a;
  box-shadow: 0 6px 20px rgba(30, 77, 43, 0.14);
  z-index: 5;
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.logistics-card:hover .lc-icon-badge {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
  transform: scale(1.1) rotate(-4deg);
}

/* Body — padded to clear the badge */
.lc-body {
  display: block;
  flex: 1;
  padding: 44px 24px 28px 24px;
}

.lc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.lc-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

.lc-body p a,
.lc-body p * {
  color: inherit;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .logistics-cards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .logistics-banner {
    min-height: 280px;
  }

  .logistics-banner-content {
    padding: 36px 28px;
  }

  .logistics-banner-title {
    font-size: 28px;
  }
}

/* ── READY TO PARTNER CTA ── */
.partner-cta-section {

  background: var(--warm-white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.partner-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.partner-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.partner-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ── INQUIRY SECTION ── */
.inquiry-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Spices Watermarks */
.watermark-spices {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 450px;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1596797038530-2c107229654b?auto=format&fit=crop&w=800&q=80');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

.watermark-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1532336414038-cf19250c5757?auto=format&fit=crop&w=800&q=80');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

.inquiry-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.inquiry-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.cd-item span {
  font-size: 14.5px;
  color: var(--text-mid);
  font-weight: 500;
}

/* Glassmorphism Form Card */
.inquiry-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  transition: all 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a4b4a6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(74, 143, 95, 0.12);
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  margin-top: 10px;
}

.form-status {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
  transition: all 0.3s;
}

.form-status.success {
  color: #1b5e20;
  font-weight: 500;
}

.form-status.error {
  color: #b71c1c;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(250,248,242,0.8);
  padding: 0;
  border-top: 1px solid var(--green-deep);
  position: relative;
  overflow: hidden;
}

/* Faint world map outline background pattern */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-col h3 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 3px solid var(--accent-gold);
  padding-left: 10px;
  line-height: 1.2;
}

.brand-col .footer-logo-img {
  height: 140px; /* Increased from 105px */
  width: auto;
  margin-bottom: 20px;
  align-self: flex-start;
}

.brand-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250,248,242,0.65);
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(250,248,242,0.7);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Links column */
.links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-col a {
  color: rgba(250,248,242,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  font-weight: 400;
}

.links-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

/* Contact column */
.footer-contact-item {
  margin-bottom: 16px;
}

.footer-contact-item strong {
  display: block;
  font-size: 10px;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(250,248,242,0.65);
  line-height: 1.5;
  text-decoration: none;
  font-weight: 300;
}

.footer-contact-item a:hover {
  color: white;
}

/* Quick Inquiry column in footer */
.footer-mini-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-mini-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 13px;
  transition: all 0.3s;
}

.footer-mini-form input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

.footer-submit-btn {
  background: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--text-dark);
  padding: 12px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(184, 149, 90, 0.2);
}

.footer-submit-btn:hover {
  background: #a3824b;
  border-color: #a3824b;
  transform: translateY(-1px);
}

/* Logistics animation in footer override position */
footer .logistics-scene {
  background: transparent;
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
  position: relative;
}

/* Copyright Bottom Bar */
.footer-bottom-bar {
  background: #090f0b;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-inner p {
  font-size: 13px;
  color: rgba(250,248,242,0.4);
  font-weight: 300;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(250,248,242,0.6);
  border-radius: 6px;
  transition: all 0.3s;
}

.back-to-top:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

@media (max-width: 768px) {
  [data-reveal="left"], [data-reveal="right"] {
    transform: translateY(30px);
  }
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ══════════════════════════════════════ */

/* ── 1024px Tablet ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }
  .footer-upper { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-title { font-size: clamp(38px, 5vw, 62px); }
  .about-intro-inner { gap: 50px; }
  .inquiry-wrapper { gap: 50px; }
}

/* ── 900px Tablet ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }

  /* Nav */
  .nav-links, .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero — keep it to 100vh but reduce inner padding */
  .hero { min-height: 100svh; padding-top: 72px; }
  .hero-inner { padding-top: 28px; padding-bottom: 40px; }
  .hero-content { max-width: 100%; }
  #hero-globe-canvas { opacity: 0.45; }

  /* Global sections */
  section { padding: 56px 0; }
  .why-choose-us { padding: 56px 0; }
  .partner-cta-section { padding: 56px 0; }
  .inquiry-section { padding: 56px 0; }

  /* About */
  .about-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-bowl-wrap { height: 280px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  #machinery-grid { grid-template-columns: 1fr; }
  #machinery-grid .psc-card { grid-column: span 1; max-width: 420px; margin: 0 auto; }
  .psc-cards-container { margin-top: -60px; }
  .psc-hero-banner { padding: 48px 0 110px 0; }
  .psc-hero-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .psc-hero-action { margin-bottom: 0; }
  .psc-hero-text { max-width: 100%; }
  .products-showcase { padding-bottom: 56px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .connector { display: none; }
  .process-card { padding: 24px 20px; }

  /* Inquiry */
  .inquiry-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .inquiry-form-card { padding: 32px 24px; }

  /* Logistics */
  .logistics-services { padding: 48px 0 64px 0; }
  .logistics-banner { padding: 40px 28px; min-height: auto; }
  .logistics-banner-content { max-width: 100%; }
  .logistics-cards-grid { grid-template-columns: 1fr; margin-top: -12px; }
  .card-road, .card-ocean { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .card-road { border-bottom: 1px solid var(--border); }
  .logistics-card { padding: 22px 20px; }

  /* Footer */
  .footer-upper { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 48px; padding-bottom: 40px; }
}

/* ── 768px Mobile Landscape ── */
@media (max-width: 768px) {
  /* Hero text */
  .hero-title { font-size: clamp(30px, 8vw, 48px); letter-spacing: -0.5px; margin-bottom: 14px; }
  .hero-desc  { font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
  .hero-badge { font-size: 10px; margin-bottom: 14px; padding: 5px 14px; }
  .hero-cta   { gap: 10px; margin-bottom: 28px; }

  /* Stats — horizontal 3-col compact row */
  .hero-stats { flex-direction: row; flex-wrap: nowrap; padding-top: 20px; gap: 0; }
  .stat-item  { flex: 1; padding: 0 10px; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item + .stat-item { border-left: 1px solid var(--border); }
  .stat-num   { font-size: 26px; }
  .stat-label { font-size: 10px; }

  /* Section typography */
  .section-title { font-size: clamp(24px, 7vw, 40px); }
  .section-desc  { font-size: 14px; }

  /* Tabs */
  .division-tabs { display: flex; flex-wrap: wrap; border-radius: 14px; padding: 4px; gap: 4px; }
  .tab-btn       { padding: 10px 14px; font-size: 12px; }

  /* Partner CTA buttons */
  .partner-cta-actions { flex-direction: column; align-items: center; }
  .partner-cta-actions .btn-primary,
  .partner-cta-actions .btn-outline { width: 100%; max-width: 300px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .inquiry-form-card { padding: 28px 20px; }

  /* Mobile menu */
  .mobile-menu a { font-size: 26px; }
  .mobile-lang-grid { grid-template-columns: repeat(3, 1fr); }

  /* Products */
  .psc-img-wrap { height: 180px; }
  .psc-body { padding: 18px 16px; gap: 10px; }
  .psc-name { font-size: 20px; }
  .psc-desc { font-size: 13px; }
}

/* ── 600px Mobile Portrait ── */
@media (max-width: 600px) {
  .container { padding: 0 15px; }
  .nav-inner  { padding: 0 15px; }

  /* Hero — compact for small screens */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-inner { padding-top: 20px; padding-bottom: 32px; }
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .hero::after {
    background: linear-gradient(
      to right,
      var(--cream) 0%,
      var(--cream) 70%,
      rgba(250,248,242,0.8) 88%,
      transparent 100%
    );
  }

  /* Stats — Horizontal Row preserved on Mobile */
  .hero-stats { 
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .stat-item { 
    padding: 0 4px !important; 
    width: auto !important;
    flex: 1;
    text-align: center;
    box-shadow: none;
    background: transparent;
    border: none !important;
  }
  .stat-item + .stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 8px; letter-spacing: 0.2px; margin-top: 2px; }

  /* Globe/particles reduced */
  #hero-globe-canvas  { opacity: 0.22; transform: scale(0.65) translateX(18%); transform-origin: center right; }
  #hero-particles-canvas { opacity: 0.4; }

  /* CTA buttons */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 22px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; text-align: center; padding: 13px 20px; font-size: 13px; }

  /* Sections — tight */
  section { padding: 44px 0; }
  .why-choose-us { padding: 44px 0; }
  .partner-cta-section { padding: 44px 0; }
  .inquiry-section { padding: 44px 0; }

  /* Section text */
  .section-title { font-size: clamp(22px, 8vw, 32px); margin-bottom: 12px; }
  .section-desc  { font-size: 13.5px; }
  .section-label { font-size: 10px; margin-bottom: 12px; }

  /* About */
  .about-intro-inner { gap: 24px; }
  .about-bowl-wrap   { height: 220px; }
  .about-intro-text p { font-size: 14px; line-height: 1.6; }

  /* Products showcase */
  .products-showcase { padding-bottom: 44px; }
  .psc-hero-banner { padding: 36px 0 100px 0; }
  .psc-cards-container { margin-top: -56px; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  #machinery-grid .psc-card { grid-column: span 1; }
  .psc-img-wrap { height: 180px; }
  .psc-body { padding: 16px 14px; gap: 8px; }
  .psc-name { font-size: 19px; }
  .psc-desc { font-size: 13px; }
  .psc-local { font-size: 10px; }
  .psc-benefits span { font-size: 10px; padding: 3px 8px; }
  .division-tabs-wrapper { margin-top: 20px; }
  .tab-btn { flex: 1; padding: 9px 6px; font-size: 11px; }
  .division-tabs { width: 100%; }

  /* Process cards */
  .process-grid { gap: 14px; }
  .process-card { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .process-card-right { display: none; }
  .process-num { font-size: 18px; margin-bottom: 4px; }
  .process-card-left h3 { font-size: 16px; margin-bottom: 6px; }
  .process-card-left p  { font-size: 13px; }

  /* Inquiry */
  .inquiry-wrapper { gap: 28px; }
  .inquiry-form-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 12px; font-size: 13px; }
  .contact-details { gap: 14px; margin-top: 24px; }
  .cd-item span { font-size: 13px; }
  .watermark-spices, .watermark-left { display: none; }

  /* Logistics */
  .logistics-services { padding: 36px 0 52px 0; }
  .logistics-banner { padding: 28px 16px; border-radius: 12px; min-height: auto; }
  .logistics-banner-title { font-size: clamp(20px, 6vw, 28px); margin-bottom: 16px; }
  .logistics-cards-grid { border-radius: 12px; margin-top: -8px; }
  .logistics-card { padding: 18px 16px; gap: 12px; }
  .card-icon-wrapper { width: 44px; height: 44px; }
  .freight-icon { width: 20px; height: 20px; }
  .logistics-card h3 { font-size: 15px; }
  .logistics-card p  { font-size: 12.5px; }
  .btn-terracotta { width: 100%; text-align: center; padding: 12px 20px; }

  /* Partner CTA */
  .partner-cta-inner .section-title { font-size: clamp(20px, 7vw, 30px); }
  .partner-cta-actions { gap: 12px; margin-top: 24px; }
  .partner-cta-actions .btn-primary,
  .partner-cta-actions .btn-outline { max-width: 100%; }

  /* Footer */
  .footer-upper { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; padding-bottom: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-contact-item p,
  .footer-contact-item a { font-size: 13px; }
  .brand-tagline { font-size: 13px; }

  /* Mobile menu */
  .mobile-menu { padding: 90px 20px 36px; gap: 28px; }
  .mobile-menu a { font-size: 24px; }
  .mobile-lang-grid { grid-template-columns: repeat(3, 1fr); }

  /* Logistics scene */
  .logistics-scene { height: 160px; }
  .skyline { bottom: 55px; height: 75px; }
  .street-elements { bottom: 55px; height: 75px; }
  .roadway { height: 55px; }
  .street-building.warehouse { transform: scale(0.75); transform-origin: bottom left; }
  .street-tree.tree-1 { transform: scale(0.75); transform-origin: bottom left; }
  .street-bench, .street-light { display: none; }
}

/* ── 400px Very Small Phones ── */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .nav-inner  { padding: 0 12px; }
  .logo-img   { height: 38px; }

  .hero-title { font-size: 24px; }
  .hero-desc  { font-size: 13px; }
  .stat-num   { font-size: 20px; }
  .stat-label { font-size: 9px; }

  .section-title { font-size: 20px; }
  .psc-name { font-size: 17px; }
  .tab-btn  { font-size: 10px; padding: 8px 4px; }

  .logistics-banner-title { font-size: 18px; }
  .mobile-menu a { font-size: 20px; }
  .mobile-lang-grid { grid-template-columns: repeat(2, 1fr); }

  /* Disable globe on smallest screens */
  #hero-globe-canvas,
  #hero-particles-canvas { display: none; }
}

/* ── Touch devices — prevent sticky hover states ── */
@media (hover: none) {
  .psc-card:hover,
  .process-card:hover,
  .logistics-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-terracotta:hover { transform: none; }

  /* Minimum 44×44px touch targets */
  .btn-primary, .btn-outline, .btn-terracotta,
  .tab-btn, .mob-lang-btn { min-height: 44px; }
  .social-btn { min-width: 44px; min-height: 44px; }
  .mobile-toggle { min-width: 44px; min-height: 44px; justify-content: center; }
  .hero { cursor: default !important; }
}


/* ── LOGISTICS SCENE ANIMATION styles ── */
.logistics-scene {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0;
  border-bottom: 2px solid var(--border);
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.skyline {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.distant-hill {
  width: 100%;
  height: 100%;
  display: block;
}

.street-elements {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}

.street-building {
  position: absolute;
  bottom: 0;
}

.street-building.warehouse {
  left: 10%;
  opacity: 0.95;
}

.street-building.office {
  left: 70%;
  opacity: 0.95;
}

.street-light {
  position: absolute;
  bottom: 0;
  left: 30%;
  opacity: 0.85;
}

.street-tree {
  position: absolute;
  bottom: 0;
}

.street-tree.tree-1 {
  left: 45%;
}

.street-tree.tree-2 {
  left: 85%;
}

.street-bench {
  position: absolute;
  bottom: 0;
  left: 55%;
  opacity: 0.9;
}

.roadway {
  background: #252e26;
  height: 80px;
  width: 100%;
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--text-dark);
}

.road-line {
  border-top: 2px dashed var(--accent-gold);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0.6;
}

.truck {
  position: absolute;
  bottom: 8px;
  transform: translateX(-240px);
  will-change: transform;
}

.truck-red {
  animation: driveTruck 20s linear infinite;
  z-index: 4;
}

.truck-yellow {
  animation: driveTruck 28s linear infinite;
  animation-delay: 8s;
  z-index: 5;
}

@keyframes driveTruck {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-240px);
  }
}

/* Make it responsive on smaller screens */
@media (max-width: 900px) {
  .street-building.office {
    display: none;
  }
  .street-tree.tree-2 {
    display: none;
  }
  .street-bench {
    left: 65%;
  }
  .truck-red {
    animation-duration: 15s;
  }
  .truck-yellow {
    animation-duration: 22s;
  }
}

@media (max-width: 600px) {
  .logistics-scene {
    height: 180px;
  }
  .skyline {
    bottom: 60px;
    height: 80px;
  }
  .street-elements {
    bottom: 60px;
    height: 80px;
  }
  .roadway {
    height: 60px;
  }
  .street-building.warehouse {
    left: 5%;
    transform: scale(0.8);
    transform-origin: bottom left;
  }
  .street-tree.tree-1 {
    left: 50%;
    transform: scale(0.8);
    transform-origin: bottom left;
  }
  .street-bench, .street-light {
    display: none;
  }
  .truck svg {
    transform: scale(0.8);
    transform-origin: bottom left;
  }
  @keyframes driveTruck {
    0% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(-200px);
    }
  }
}

/* ── GLOBAL LOGISTICS & FREIGHT SECTION ── */
.logistics-services {
  padding: 100px 0 120px 0;
  background: var(--cream);
}

.logistics-banner {
  background-color: #0c1810;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.logistics-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,24,16,0.96) 0%, rgba(12,24,16,0.85) 50%, rgba(12,24,16,0.3) 100%);
  z-index: 2;
}

.logistics-banner-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label-gold::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
  display: inline-block;
}

.logistics-banner-title {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: white;
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.btn-terracotta {
  background: #a85545;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(168,85,69,0.3);
  display: inline-block;
  text-align: center;
}

.btn-terracotta:hover {
  background: #bd6453;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,69,0.45);
}

/* Image elements removed as per user request */

.logistics-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -30px;
  position: relative;
  z-index: 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.logistics-card {
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-icon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.freight-icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-text {
  z-index: 2;
}

.logistics-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.3px;
  transition: transform 0.3s;
}

.logistics-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  transition: transform 0.3s;
}

.card-watermark {
  position: absolute;
  right: -15px;
  bottom: -25px;
  width: 130px;
  height: 130px;
  opacity: 0.05;
  color: currentColor;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Individual Card Themes */
.card-road {
  background-color: var(--cream);
  color: var(--text-dark);
  border-right: 1px solid var(--border);
}

.card-road .card-icon-wrapper {
  background: rgba(30, 77, 43, 0.05);
  border-color: rgba(30, 77, 43, 0.1);
}

.card-road .freight-icon {
  color: var(--green-deep);
}

.card-road .card-text h3 {
  color: var(--green-deep);
}

.card-road .card-text p {
  color: var(--text-mid);
}

.card-road .card-watermark {
  opacity: 0.03;
}

.card-ocean {
  background-color: var(--green-mid);
  color: var(--cream);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.card-ocean .freight-icon {
  color: var(--cream);
}

.card-ocean .card-text h3 {
  color: white;
}

.card-ocean .card-text p {
  color: rgba(255, 255, 255, 0.8);
}

.card-air {
  background-color: #a85545;
  color: var(--cream);
}

.card-air .freight-icon {
  color: var(--cream);
}

.card-air .card-text h3 {
  color: white;
}

.card-air .card-text p {
  color: rgba(255, 255, 255, 0.8);
}

/* Card Hover Interactions */
.logistics-card:hover {
  transform: translateY(-5px);
  z-index: 5;
}

.card-road:hover {
  box-shadow: 0 12px 30px rgba(30, 77, 43, 0.08);
}

.card-ocean:hover {
  box-shadow: 0 12px 30px rgba(30, 77, 43, 0.15);
}

.card-air:hover {
  box-shadow: 0 12px 30px rgba(168, 85, 69, 0.25);
}

.logistics-card:hover .card-icon-wrapper {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-road:hover .card-icon-wrapper {
  background: rgba(30, 77, 43, 0.08);
  border-color: rgba(30, 77, 43, 0.2);
}

/* SVG Icon Micro-Animations */
.card-road:hover .truck-icon {
  transform: translateX(4px);
}

.card-ocean:hover .ship-icon {
  animation: shipSway 1.8s ease-in-out infinite;
}

.card-air:hover .plane-icon {
  transform: translate(4px, -4px) rotate(-3deg);
}

@keyframes shipSway {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Watermark Animations */
.card-road:hover .card-watermark {
  transform: scale(1.1) translateX(8px);
  opacity: 0.05;
}

.card-ocean:hover .card-watermark {
  transform: scale(1.1) rotate(3deg);
  opacity: 0.08;
}

.card-air:hover .card-watermark {
  transform: scale(1.1) translate(5px, -5px);
  opacity: 0.08;
}

/* Responsive Styles for Logistics */
@media (max-width: 900px) {
  .logistics-banner {
    padding: 60px 40px;
    min-height: auto;
  }
  
  .logistics-banner-content {
    max-width: 100%;
  }
  
  .logistics-cards-grid {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }
  
  .card-road, .card-ocean {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .card-road {
    border-bottom: 1px solid var(--border);
  }
  
  .logistics-card {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .logistics-services {
    padding: 60px 0 80px 0;
  }
  
  .logistics-banner {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }
  
  .logistics-banner-content {
    max-width: 100%;
  }
}

/* ── HERO RESPONSIVE CONTRAST & VISIBILITY FOR MOBILE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 40%, #145A32 0%, #0B2E24 50%, #081a14 100%);
  }

  .hero::after {
    /* Vertical black/dark overlay mask instead of horizontal on mobile */
    background: linear-gradient(
      to bottom,
      rgba(8, 26, 20, 0.45) 0%,
      rgba(8, 26, 20, 0.85) 60%,
      #081a14 100%
    );
  }

  .hero-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
    background: rgba(30, 77, 43, 0.45);
    border-color: rgba(74, 143, 95, 0.35);
    color: #a8e6cf;
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 48px);
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
  }

  .hero-cta {
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-cta .btn-primary {
    background: #D4AF37;
    color: #081a14;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
  }

  .hero-cta .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .stat-item {
    padding: 0 4px;
    width: auto;
    flex: 1;
    text-align: center;
  }

  .stat-item:first-child {
    padding-left: 0;
  }

  .stat-item + .stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    padding-top: 0;
  }

  .stat-num {
    font-size: 20px;
    font-weight: 700;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 0.2px;
    margin-top: 2px;
  }
}


/* ── INQUIRY POPUP MODAL ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 25, 15, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: var(--warm-white);
  border-radius: 24px;
  box-shadow: 0 32px 100px rgba(30, 77, 43, 0.3);
  display: flex;
  max-width: 880px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popup-overlay.active .popup-modal {
  transform: translateY(0) scale(1);
}

/* Left panel */
.popup-left {
  background: linear-gradient(145deg, var(--green-deep) 0%, #163a20 100%);
  color: white;
  padding: 48px 40px;
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.popup-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(184, 149, 90, 0.15);
  border-radius: 50%;
}

.popup-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 149, 90, 0.2);
  border: 1px solid rgba(184, 149, 90, 0.4);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  width: fit-content;
}

.popup-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1.2;
  color: white;
  font-weight: 600;
}

.popup-left h2 em {
  color: var(--accent-gold-light);
  font-style: italic;
}

.popup-left > p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 300;
}

.popup-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.popup-perks li {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

.popup-contact-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-gold-light);
  font-weight: 500;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* Right panel */
.popup-right {
  padding: 48px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.popup-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.popup-form-group input,
.popup-form-group select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.popup-form-group input:focus,
.popup-form-group select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 63, 0.12);
  background: white;
}

.popup-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 4px;
}

.popup-skip {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.popup-skip:hover {
  color: var(--green-mid);
}

.popup-form-status {
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
  min-height: 20px;
  font-weight: 500;
}

.popup-form-status.success { color: var(--green-mid); }
.popup-form-status.error   { color: #c0392b; }

/* Close button */
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--tan);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}

.popup-close:hover {
  background: var(--green-deep);
  color: white;
  transform: rotate(90deg);
}

/* Mobile responsive */
@media (max-width: 640px) {
  .popup-modal {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
  }

  .popup-left {
    width: 100%;
    padding: 32px 24px;
  }

  .popup-left h2 {
    font-size: 26px;
  }

  .popup-perks {
    display: none;
  }

  .popup-right {
    padding: 24px;
  }

  .popup-contact-hint {
    display: none;
  }
}
