@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@200;300;400;500;600;700;900&display=swap');

:root {
  --primary-dark: #07111e;
  --secondary-dark: #0c1a30;
  --royal-navy: #0d253f;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-hover: #f3e5ab;
  --silver: #e2e8f0;
  --slate-grey: #94a3b8;
  --white: #ffffff;
  --glass-bg: rgba(7, 17, 30, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(255, 255, 255, 0.03);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--royal-navy);
  border-radius: 4px;
  border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Typography & Layouts */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

p {
  color: var(--slate-grey);
  font-weight: 300;
  font-size: 1.05rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 8rem 0;
}

.text-gold {
  color: var(--gold);
}

.text-silver {
  color: var(--silver);
}

.text-center {
  text-align: center;
}

/* Floating Navigation Header */
header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-radius: 100px;
  background: rgba(7, 17, 30, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

header.sticky {
  top: 0.75rem;
  background: rgba(7, 17, 30, 0.85);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 80px;
  max-width: 100%;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

header.sticky .nav-container {
  padding: 0 2.5rem;
  height: 62px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  display: block;
}

header.sticky .logo-img {
  height: 46px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
  align-items: center;
}

.logo-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb; /* Blue */
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold); /* Golden */
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

header.sticky .logo-title {
  font-size: 1.45rem;
  letter-spacing: 1.5px;
}

header.sticky .logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.85;
}

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

.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Premium Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--slate-grey);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#canvas3d-container, #hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#canvas3d-container {
  background: radial-gradient(circle at center, #0f2b48 0%, #060f1c 100%);
}

#hero-canvas {
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 17, 30, 0.9) 0%, rgba(7, 17, 30, 0.7) 40%, rgba(7, 17, 30, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 50%;
  padding-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--gold);
}

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-grey);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Animated Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  max-width: 600px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Glassmorphism Trust Bar */
.trust-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.75rem 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.trust-logo-scroll {
  display: flex;
  gap: 5rem;
  animation: scrollLogos 25s linear infinite;
  width: max-content;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: var(--transition-fast);
  color: var(--white);
  height: 40px;
}

.trust-logo svg {
  height: 100%;
  max-width: 150px;
  fill: currentColor;
}

.trust-logo:hover {
  opacity: 0.95;
  color: var(--gold);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Common Styling */
.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1.5rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

/* About Section */
.about-section {
  position: relative;
  background: radial-gradient(circle at bottom, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-map-container {
  position: relative;
  width: 100%;
  height: 450px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

#map3d-canvas {
  width: 100%;
  height: 100%;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feat-item i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.about-feat-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.about-feat-desc {
  font-size: 0.9rem;
  color: var(--slate-grey);
}

/* Products Section */
.products-section {
  background: var(--primary-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  height: 480px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-canvas-wrap {
  width: 100%;
  height: 180px;
  margin-bottom: 2rem;
  position: relative;
}

.product-canvas-wrap canvas {
  width: 100%;
  height: 100%;
}

.product-image-wrap {
  width: 100%;
  height: 180px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
  transition: var(--transition-fast);
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover h3 {
  color: var(--gold);
}

/* Product Specifications Tables Section */
.spec-section {
  background: var(--secondary-dark);
}

.spec-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.spec-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--slate-grey);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.spec-tab-btn:hover {
  color: var(--white);
  border-color: var(--slate-grey);
}

.spec-tab-btn.active {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.spec-content-wrap {
  position: relative;
  min-height: 400px;
}

.spec-table-container {
  display: none;
  animation: fadeIn 0.6s ease forwards;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.spec-table-container.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.spec-table-info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.spec-table-info p {
  margin-bottom: 2rem;
}

.spec-table-data {
  width: 100%;
  border-collapse: collapse;
}

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

.spec-table-data tr:last-child {
  border-bottom: none;
}

.spec-table-data td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.spec-table-data td.label {
  font-weight: 600;
  color: var(--white);
  width: 40%;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.spec-table-data td.value {
  color: var(--slate-grey);
  text-align: right;
}

.spec-image-box {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.spec-image-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-dark), transparent);
  z-index: 1;
}

.spec-image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.spec-image-overlay span {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.spec-image-overlay h4 {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

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

/* Product Detail Pages Styles */
.prod-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.prod-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.prod-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(7, 17, 30, 0.4) 0%, rgba(7, 17, 30, 0.95) 90%),
              linear-gradient(to bottom, transparent 60%, var(--primary-dark) 100%);
  z-index: 2;
}

.prod-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.prod-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.prod-hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

.variety-section {
  padding: 6rem 0;
  background: var(--primary-dark);
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.variety-card {
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.variety-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.variety-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.75rem;
}

.variety-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variety-spec-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.variety-spec-line span.label {
  color: var(--slate-grey);
}

.variety-spec-line span.val {
  color: var(--white);
  font-weight: 500;
}

/* Sutta/Foxnuts Visual representation */
.grade-visuals {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.grade-visual-card {
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grade-circle-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.grade-circle {
  border-radius: 50%;
  background: radial-gradient(circle, #fcfcfc 0%, #dbd7cb 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset -5px -5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
}

/* Double ripple glow for Foxnuts visual */
.grade-circle-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0.3;
  animation: rotateDashed 20s linear infinite;
}

@keyframes rotateDashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* High-end specifications section for pages */
.page-spec-section {
  background: var(--secondary-dark);
  padding: 8rem 0;
}

.export-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.export-table-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.export-table-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1rem;
}

/* Certifications Section */
.certs-section {
  background: #050d18;
  position: relative;
  overflow: hidden;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.cert-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cert-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  color: var(--slate-grey);
}

.cert-icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.cert-image-wrap {
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cert-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.cert-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
  transition: var(--transition-fast);
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--slate-grey);
  line-height: 1.5;
  transition: var(--transition-fast);
  opacity: 0.8;
}

.cert-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.25);
}

.cert-card:hover .cert-icon {
  color: var(--gold);
  background: rgba(212,175,55,0.05);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.cert-card:hover .cert-image-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.08);
}

.cert-card:hover h3 {
  color: var(--gold);
}

/* Why Choose Us Section */
.why-section {
  background: var(--primary-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  height: 320px;
  display: flex;
  flex-direction: column;
}

.why-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--slate-grey);
  flex-grow: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  background: rgba(12, 26, 48, 0.8);
}

/* Global Presence Section */
.presence-section {
  background: radial-gradient(circle at center, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.map-interaction-helper {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--slate-grey);
}

.map-interaction-helper span {
  color: var(--gold);
  font-weight: 600;
}

.region-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.region-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.region-badge:hover {
  border-color: var(--gold);
  color: var(--white);
}

.region-badge.active {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Export Process Timeline */
.process-section {
  background: var(--primary-dark);
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--glass-border) 0%, var(--gold) 50%, var(--glass-border) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2.75rem;
  width: 16px;
  height: 16px;
  background: var(--primary-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 10px var(--gold-glow);
  transition: var(--transition-fast);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-content:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(212,175,55,0.1);
  transform: translateY(-3px);
}

.timeline-item:hover .timeline-dot {
  background: var(--gold);
  transform: scale(1.3) translateX(-50%);
}
.timeline-item:nth-child(odd):hover .timeline-dot {
  transform: scale(1.3) translateX(50%);
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.timeline-content p {
  font-size: 0.9rem;
}

/* Contact Section & Form */
.contact-section {
  background: radial-gradient(circle at bottom right, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.8rem;
  color: var(--gold);
  width: 50px;
  height: 50px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-details h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info-details p, .contact-info-details a {
  font-size: 0.95rem;
  color: var(--slate-grey);
}

.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 4rem;
  border-radius: 8px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-grey);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-input, .form-textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

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

.form-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Support Section */
.support-section {
  background: var(--secondary-dark);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.support-card {
  background: var(--primary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.support-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-card h3 i {
  color: var(--gold);
}

.support-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
}

.channel-wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.channel-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-email {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-email:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-chat {
  background: var(--royal-navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-chat:hover {
  background: #113256;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 37, 63, 0.4);
}

/* Footer Section */
footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--glass-border);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-grey);
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.05);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--gold);
}

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

.footer-links a {
  color: var(--slate-grey);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal-links a {
  color: var(--slate-grey);
  font-size: 0.9rem;
}

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

/* Quote Request Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 15, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2002;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 2.5rem 3rem 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--white);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--slate-grey);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: 3rem;
}

/* Quote Submission Success Screen */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.5s ease;
}

.success-msg i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--gold-glow);
}

.success-msg h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  header {
    width: 94%;
    top: 1rem;
    border-radius: 50px;
  }
  header.sticky {
    top: 0.5rem;
  }
  .nav-container {
    padding: 0 1.5rem;
    height: 68px;
  }
  header.sticky .nav-container {
    padding: 0 1.5rem;
    height: 56px;
  }
  .logo-img {
    height: 50px;
  }
  header.sticky .logo-img {
    height: 42px;
  }
  .logo-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  .logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  header.sticky .logo-title {
    font-size: 1.15rem;
    letter-spacing: 0.8px;
  }
  header.sticky .logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
  }
  .nav-menu {
    display: none; /* Mobile menu toggled via JS */
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    width: 80%;
    padding-left: 2rem;
  }
  .hero-heading {
    font-size: 2.8rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    height: 440px;
  }
  .spec-table-container.active {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .spec-image-box {
    min-height: 250px;
  }
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-container::before {
    left: 40px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-dot {
    left: 32px !important;
    right: auto !important;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .variety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .export-tables-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .header-quote-btn {
    padding: 0.5rem 1.1rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .about-content {
    order: 1 !important;
  }
  .about-map-container {
    order: 2 !important;
    height: 380px !important;
  }
  .section-padding {
    padding: 5rem 0;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    height: auto;
    padding: 2.5rem 1.5rem;
  }
  .certs-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    height: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .form-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .form-buttons button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .variety-grid {
    grid-template-columns: 1fr;
  }
  .grade-visuals {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-table-container {
    padding: 1.5rem;
  }
  .spec-table-data td.label {
    width: 50%;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .modal-header {
    padding: 1.5rem;
  }
}

/* Mobile Nav Overlay Menu */
.mobile-nav-active {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  transition: var(--transition-fast);
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--gold);
}


/* ==========================================
   14. CLIENT FEEDBACK & TESTIMONIALS SECTION
   ========================================== */
.feedback-section {
  background: radial-gradient(circle at center, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.feedback-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}
.feedback-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.12;
}
.feedback-stars {
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.feedback-text {
  color: var(--slate-grey);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 0.98rem;
}
.feedback-client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}
.feedback-client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a27b38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.feedback-client-details {
  display: flex;
  flex-direction: column;
}
.feedback-client-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.feedback-client-company {
  color: var(--slate-grey);
  font-size: 0.8rem;
}

