/* ==========================================================================
   PRIME AGRO EXIM - LUXURY DESIGN SYSTEM & STYLESHEET
   Palette: Dark Emerald Green, Gold, Pure White, Glassmorphism
   Typography: Playfair Display (Headings), Poppins (Body), Cinzel (Accents)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #051410;
  --bg-surface: #0a231c;
  --bg-card: rgba(10, 35, 28, 0.65);
  --bg-card-hover: rgba(14, 46, 37, 0.85);
  --emerald-primary: #00a86b;
  --emerald-dark: #07221a;
  --emerald-light: #10b981;
  --emerald-glow: rgba(0, 168, 107, 0.4);
  
  --gold-primary: #d4af37;
  --gold-light: #fef08a;
  --gold-bright: #ffd700;
  --gold-dark: #b48c1e;
  --gold-gradient: linear-gradient(135deg, #ffe58f 0%, #d4af37 50%, #997517 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #d4af37 100%);
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #f3e5ab;
  
  --border-glass: rgba(212, 175, 55, 0.22);
  --border-glass-hover: rgba(212, 175, 55, 0.65);
  --shadow-glass: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Cinzel', serif;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--emerald-dark), var(--gold-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Canvas background for leaves & gold dust */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Mouse Aura Follower */
.mouse-follower {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 168, 107, 0.04) 50%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.15s ease-out, opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0a2f25 0%, #030e0b 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 25px;
}

.loader-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pulseRotate 3s infinite ease-in-out;
}

.loader-ring {
  position: absolute;
  inset: -12px;
  border: 2px solid transparent;
  border-top-color: var(--gold-primary);
  border-bottom-color: var(--emerald-primary);
  border-radius: 50%;
  animation: loaderSpin 1.8s linear infinite;
}

.loader-text {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.loader-bar-bg {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseRotate {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 15px var(--gold-glow)); }
  50% { transform: scale(1.08) rotate(5deg); filter: drop-shadow(0 0 30px var(--gold-bright)); }
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 6%;
  background: rgba(5, 20, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: transform var(--transition-smooth);
}

.nav-brand:hover .nav-logo-img {
  transform: rotate(12deg) scale(1.1);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-title span {
  color: var(--gold-primary);
}

.nav-subtitle {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

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

.nav-cta-btn {
  background: var(--gold-gradient);
  color: #051410;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.nav-cta-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.45);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Page Views System */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
  z-index: 10;
  width: 100%;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #071914;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 40px;
  border: 1px solid var(--gold-bright);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 40px;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-bright);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--gold-glow);
}

/* ==========================================================================
   HOME PAGE - HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
}

/* Canvas / Overlay Gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 20, 16, 0.45) 0%, rgba(3, 14, 11, 0.88) 80%),
              linear-gradient(to bottom, rgba(5, 20, 16, 0.6) 0%, transparent 40%, rgba(5, 20, 16, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* Continuous Animated Logo at Exact Center */
.hero-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  cursor: pointer;
}

.hero-logo-glow-aura {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(0, 168, 107, 0.25) 40%, transparent 70%);
  filter: blur(15px);
  animation: auraMorph 6s infinite ease-in-out alternate;
}

.hero-logo-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 40px var(--gold-glow);
  animation: floatRotate 8s infinite ease-in-out;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

/* Golden Shine Sweep Animation across logo */
.hero-logo-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.7) 50%, transparent 60%);
  animation: shineSweep 4.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes floatRotate {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  25% { transform: translateY(-10px) rotate(2deg) scale(1.02); }
  50% { transform: translateY(0px) rotate(0deg) scale(1); }
  75% { transform: translateY(10px) rotate(-2deg) scale(0.98); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

@keyframes auraMorph {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.6; }
}

@keyframes shineSweep {
  0% { transform: translate(-100%, -100%) rotate(25deg); }
  30%, 100% { transform: translate(100%, 100%) rotate(25deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-glass);
  padding: 6px 18px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: #e2e8f0;
  max-width: 720px;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
}

.scroll-down-indicator i {
  font-size: 1.2rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* ==========================================================================
   SECTIONS GENERAL & SCROLL REVEAL
   ========================================================================== */
.section {
  padding: 100px 7%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 65px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.section-title span {
  color: var(--gold-primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 15px;
}

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  padding: 45px;
  position: relative;
}

.about-badge {
  display: inline-block;
  background: rgba(0, 168, 107, 0.15);
  border: 1px solid var(--emerald-light);
  color: var(--emerald-light);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stat-item {
  background: rgba(5, 20, 16, 0.6);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: border-color var(--transition-fast);
}

.stat-item:hover {
  border-color: var(--gold-primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-img-box {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

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

.about-img-box:hover img {
  transform: scale(1.05);
}

.about-floating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(10, 35, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071914;
  font-size: 1.3rem;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--gold-gradient);
  transition: height var(--transition-smooth);
}

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

.feature-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
  transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--gold-gradient);
  color: #071914;
  transform: rotateY(180deg);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   EXPORT QUALITY SECTION
   ========================================================================== */
.quality-tabs-wrap {
  max-width: 950px;
  margin: 0 auto;
}

.quality-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.quality-step-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 20px 15px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.quality-step-btn.active, .quality-step-btn:hover {
  background: rgba(14, 46, 37, 0.9);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.step-num {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 6px;
}

.step-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.quality-tab-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 45px;
  border-radius: 24px;
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.quality-tab-content.active {
  display: grid;
  animation: fadeIn 0.5s ease;
}

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

.tab-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.tab-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
}

.tab-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.tab-checklist i {
  color: var(--emerald-light);
}

.tab-img-box {
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.tab-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   GLOBAL PRESENCE SECTION
   ========================================================================== */
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.map-container {
  position: relative;
  background: rgba(5, 20, 16, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.map-world-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.35;
  filter: drop-shadow(0 0 10px var(--emerald-glow));
}

.region-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.region-card {
  background: rgba(10, 35, 28, 0.6);
  border: 1px solid var(--border-glass);
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.region-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(8px);
  background: rgba(14, 46, 37, 0.85);
}

.region-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.region-flag {
  font-size: 1.5rem;
}

.region-name {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.region-ports {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.region-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.products-hero-banner {
  padding: 140px 7% 60px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0,168,107,0.15) 0%, rgba(5,20,16,0.9) 70%);
  border-bottom: 1px solid var(--border-glass);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 50px;
}

.filter-btn {
  background: rgba(10, 35, 28, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #071914;
  border-color: var(--gold-bright);
  box-shadow: 0 5px 20px var(--gold-glow);
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  padding: 0 7% 100px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.1);
}

.product-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(5, 20, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.product-body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-gold);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

.product-card .btn-outline-gold {
  width: 100%;
}

/* ==========================================================================
   PRODUCT MODAL POPUP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 10, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #08211a;
  border: 1px solid var(--border-glass-hover);
  border-radius: 28px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 40px var(--gold-glow);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal-backdrop.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #071914;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  padding: 40px;
}

.modal-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  border: 1px solid var(--border-glass);
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.modal-category-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--emerald-light);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.modal-spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-spec-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}

.modal-spec-table td:first-child {
  color: var(--text-muted);
}

.modal-spec-table td:last-child {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero {
  padding: 140px 7% 40px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
  padding: 0 7% 100px;
}

.contact-info-card {
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.info-text a, .info-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-text a:hover {
  color: var(--gold-primary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 35, 28, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #071914;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

.contact-form-card {
  padding: 45px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  color: var(--text-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: rgba(5, 20, 16, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(10, 35, 28, 0.9);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Map Section */
.map-section {
  padding: 0 7% 100px;
}

.map-frame-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  height: 400px;
  position: relative;
}

.map-frame-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2) saturate(0.8);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #030e0b;
  border-top: 1px solid var(--border-glass);
  padding: 80px 7% 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 45px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
}

.footer-logo h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
}

.footer-logo h3 span {
  color: var(--gold-primary);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(10, 35, 28, 0.8);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--text-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 35, 28, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  padding: 16px 24px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--gold-glow);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .global-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .quality-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-tab-content {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 20, 16, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-glass);
    z-index: 999;
  }

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

  .mobile-nav-toggle {
    display: block;
    z-index: 1000;
  }

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