/* ===== GLOBAL VARIABLES & RESET ===== */
:root {
  --primary-color: #0A1F44; /* Deep Navy Blue */
  --secondary-color: #D4A017; /* Gold/Amber */
  --secondary-color-hover: #b8860b;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #f8f9fa;
  --white: #ffffff;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TYPOGRAPHY & UTILITIES ===== */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-5 { padding: 4rem 0; }
.bg-light { background-color: var(--bg-color); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo img {
  height: 52px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1rem;
}

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

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border-radius: 8px;
  border-top: 3px solid var(--secondary-color);
  padding: 0.5rem 0;
  z-index: 2000;
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  transition: all 0.25s ease;
}

.dropdown-menu li a:hover {
  color: var(--secondary-color);
  background-color: rgba(212, 160, 23, 0.08);
  padding-left: 1.8rem;
}

/* ===== MEGA MENU ===== */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  display: flex;
  gap: 0;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 2000;
  border-top: 3px solid var(--secondary-color);
  overflow: hidden;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-col {
  flex: 1;
  padding: 1.5rem;
}

.mega-menu-col:first-child {
  border-right: 1px solid #f0f0f0;
  background: #fafafa;
}

.mega-menu-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mega-menu-col ul li a {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 400;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.mega-menu-col ul li a:hover {
  color: var(--secondary-color);
  background: rgba(212, 160, 23, 0.08);
  padding-left: 1rem;
}

.mega-menu-col ul li a i {
  font-size: 0.65rem;
  color: var(--secondary-color);
  opacity: 0.6;
}

/* About Us Mega Menu (narrower variant) */
.about-mega-menu {
  min-width: 420px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

/* ---- Video Wrap ---- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #030c1d;
}

/* Real local HD video — full cover */
.hero-local-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-local-video.playing {
  opacity: 1;
}

/* Poster image — sits on top of iframe, fades out once video starts */
.hero-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease;
  z-index: 2;
}
.hero-video-wrap.loaded .hero-poster {
  opacity: 0;
  pointer-events: none;
}

/* ---- Overlay gradient ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(3, 12, 29, 0.55) 0%, transparent 40%, transparent 60%, rgba(3, 12, 29, 0.55) 100%),
    linear-gradient(to bottom, rgba(3, 12, 29, 0.45) 0%, rgba(3, 12, 29, 0.10) 40%, rgba(3, 12, 29, 0.55) 100%);
}

/* ---- Hero Content ---- */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

/* Animated "live" badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.45);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #f0c040;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.1s;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0);   }
}

.hero-title {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.4s;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.7s;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 1s;
}

/* ---- Scroll hint ---- */
.hero-scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 6;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.5s;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Ticker bar ---- */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 48px;
  background: rgba(10, 31, 68, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 160, 23, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.hero-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-right: 1px solid rgba(212, 160, 23, 0.25);
  letter-spacing: 0.3px;
}
.hero-ticker-track span i {
  color: var(--secondary-color);
  font-size: 0.85rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* ===== STATS BAR ===== */
.stats-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
}

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

.stat-item h3 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ===== CATEGORIES SHOWCASE ===== */
.categories {
  padding: 5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--white);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem 1.2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
}

.feature-card h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  height: 300px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTAgMGgyMHYyMEgwem0xMCAxMGE1IDUgMCAxIDAgMC0xMCA1IDUgMCAwIDAgMCAxMHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 5rem 0;
}

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.core-values {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.core-values h2 {
  color: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.team-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.team-card h3 {
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ===== PRODUCTS PAGE ===== */
.product-category-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-banner {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.product-banner.packaging {
  background: linear-gradient(rgba(10,31,68,0.7), rgba(10,31,68,0.7)), url('../assets/packaging_category.png') center/cover;
}

.product-banner.food {
  background: linear-gradient(rgba(10,31,68,0.7), rgba(10,31,68,0.7)), url('../assets/food_category.png') center/cover;
}

.product-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  z-index: 2;
  transition: transform 0.3s;
}

.product-banner:hover h2 {
  transform: scale(1.05);
}

.products-container {
  padding: 5rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-img {
  height: 200px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ccc;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-specs {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.product-specs span {
  font-weight: 600;
  color: var(--primary-color);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===== WHY SAPPHOX / PROCESS ===== */
.process-section {
  padding: 5rem 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 0;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 150px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 10px var(--white);
}

.step h4 {
  font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--text-light);
}

.contact-form {
  background: var(--bg-color);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.map-container {
  margin-top: 4rem;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

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

.footer-about img {
  max-height: 60px;
  max-width: 150px;
  width: auto;
  margin-bottom: 1.5rem;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--secondary-color);
}

.footer-links h4, .footer-contact-info h4, .footer-contact h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links ul li, .footer-contact-info ul li {
  margin-bottom: 0.8rem;
}

.footer-links a, .footer-contact-info a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover, .footer-contact-info a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== MEGA DROPDOWN NAV ===== */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 3px solid var(--secondary-color);
  z-index: 500;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.mega-menu-col ul {
  list-style: none;
}

.mega-menu-col ul li {
  margin-bottom: 0.4rem;
}

.mega-menu-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.mega-menu-col ul li a i {
  color: var(--secondary-color);
  font-size: 0.75rem;
  width: 14px;
}

.mega-menu-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-color);
  padding: 0.8rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.breadcrumb-list li a {
  color: var(--text-light);
  transition: color 0.2s;
}

.breadcrumb-list li a:hover {
  color: var(--secondary-color);
}

.breadcrumb-list li.active {
  color: var(--primary-color);
  font-weight: 500;
}

.breadcrumb-list .sep {
  color: #ccc;
  font-size: 0.7rem;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6e 100%);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.product-detail-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.product-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.product-detail-hero .container {
  position: relative;
  z-index: 1;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.product-hero-text .category-tag {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: 1px solid rgba(212,160,23,0.3);
}

.product-hero-text h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.product-hero-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--secondary-color);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

/* ===== PRODUCT DETAIL BODY ===== */
.product-detail-body {
  padding: 5rem 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-main h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.product-detail-main h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-detail-main h3 i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.product-detail-main p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.features-list {
  list-style: none;
  margin: 1rem 0 2rem;
}

.features-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: var(--text-color);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--secondary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.application-tag {
  background: var(--bg-color);
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.application-tag:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ===== PRODUCT SIDEBAR ===== */
.product-sidebar {
  position: sticky;
  top: 100px;
}

.spec-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.spec-card-header {
  background: var(--primary-color);
  padding: 1rem 1.5rem;
  color: var(--white);
}

.spec-card-header h4 {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

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

.spec-table tr {
  border-bottom: 1px solid #f5f5f5;
}

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

.spec-table td {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  width: 45%;
  background: #fafafa;
}

.spec-table td:last-child {
  color: var(--text-color);
}

.quote-card {
  background: linear-gradient(135deg, var(--primary-color), #1a3a6e);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.quote-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quote-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.quote-card .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 0.8rem;
}

.quote-card .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  padding: 0.8rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.quote-card .whatsapp-btn:hover {
  background: #1da851;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  padding: 4rem 0;
  background: var(--bg-color);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid transparent;
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--secondary-color);
}

.related-card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.related-card-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.related-card-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== CATEGORY PAGE (packaging.html / food-products.html) ===== */
.category-page-header {
  margin-top: 80px;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.category-page-header.packaging-bg {
  background: linear-gradient(rgba(10,31,68,0.75), rgba(10,31,68,0.85)), url('../assets/packaging_category.png') center/cover;
}

.category-page-header.food-bg {
  background: linear-gradient(rgba(10,31,68,0.75), rgba(10,31,68,0.85)), url('../assets/food_category.png') center/cover;
}

.category-page-header .container {
  position: relative;
  z-index: 1;
}

.category-page-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
}

.category-page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 600px;
}

.products-hub {
  padding: 5rem 0;
}

/* Products.html hub styles */
.hub-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 500px;
  margin-top: 80px;
}

.hub-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.hub-banner.packaging-banner {
  background: linear-gradient(rgba(10,31,68,0.6), rgba(10,31,68,0.7)), url('assets/packaging_category.png') center/cover;
}

.hub-banner.food-banner {
  background: linear-gradient(rgba(10,31,68,0.6), rgba(10,31,68,0.7)), url('assets/food_category.png') center/cover;
}

.hub-banner-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  z-index: 2;
  transition: transform 0.4s ease;
}

.hub-banner:hover .hub-banner-content {
  transform: translateY(-10px);
}

.hub-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.9) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s;
}

.hub-banner:hover::before {
  opacity: 0.7;
}

.hub-banner-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.hub-banner-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.hub-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.hub-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(212,160,23,0.6);
  z-index: 10;
}

/* ===== RESPONSIVE PRODUCT DETAIL ===== */
@media (max-width: 992px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .mega-menu { min-width: 320px; grid-template-columns: 1fr; left: 0; transform: none; }
  .mega-dropdown:hover .mega-menu { transform: none; }
  .product-hero-content { grid-template-columns: 1fr; }
  .product-hero-icon { display: none; }
  .hub-banners { grid-template-columns: 1fr; height: auto; }
  .hub-banner { height: 300px; }
}

@media (max-width: 768px) {
  .product-detail-hero { padding: 4rem 0 3rem; }
  .product-hero-text h1 { font-size: 2rem; }
  .category-page-header h1 { font-size: 2.5rem; }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
  }
  
  .nav-links.active { left: 0; }
  
  .mobile-toggle { display: block; }
  
  .category-grid, .features-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  
  .hero-title { font-size: 2.5rem; }
  
  .product-category-banners { grid-template-columns: 1fr; }
  
  .contact-form { padding: 2rem 1.5rem; }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}

/* ===== LEGAL PAGES & CARRIERS (NEW) ===== */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--secondary-color);
}

.legal-container h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.legal-container h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-container p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.legal-container ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--text-light);
}

.legal-container ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color) !important;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.spec-table-legal {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table-legal th {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: left;
  padding: 1.2rem 1rem;
  font-weight: 600;
}

.spec-table-legal td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: var(--text-color);
}

.spec-table-legal tr:nth-child(even) {
  background-color: #fafafa;
}

/* Careers & Vacancies Page */
.career-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.career-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.career-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.career-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: 0.5rem;
}

.career-content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.career-info-card {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--secondary-color);
}

.career-info-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.career-info-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.career-image-placeholder {
  height: 350px;
  background: linear-gradient(135deg, rgba(10,31,68,0.03) 0%, rgba(10,31,68,0.08) 100%);
  border: 2px dashed rgba(10,31,68,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.7;
}

.career-image-placeholder.second {
  background: linear-gradient(135deg, rgba(212,160,23,0.03) 0%, rgba(212,160,23,0.08) 100%);
  border-color: rgba(212,160,23,0.3);
  color: var(--secondary-color);
}

.vacancy-list {
  max-width: 900px;
  margin: 0 auto;
}

.vacancy-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 4px solid var(--secondary-color);
}

.vacancy-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.vacancy-meta {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.vacancy-meta .dot-sep {
  margin: 0 0.5rem;
  color: #ccc;
}

.vacancy-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.lead-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.header-vacancies {
  padding: 6rem 0;
}

@media (max-width: 992px) {
  .career-grid, .career-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vacancy-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vacancy-action {
    width: 100%;
  }
  
  .vacancy-action .btn {
    display: block;
    text-align: center;
  }
}

/* ===== NEW HOME PAGE ELEMENTS ===== */
.cta-section {
  background: linear-gradient(135deg, #1a6b5a 0%, #0d4a3e 50%, #0a3d34 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white) !important;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* btn-secondary for sustainability link */
.btn-secondary {
  background-color: #2e7d32;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Home Sustainability highlights */
.home-sustainability {
  padding: 6rem 0;
  background-color: var(--bg-color);
}

.sustainability-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.sustainability-home-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid #2e7d32;
}

.sustainability-home-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary-color);
}

.sustain-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}

.sustainability-home-card:hover .sustain-icon-wrapper {
  background-color: rgba(212, 160, 23, 0.1);
  color: var(--secondary-color);
  transform: rotate(360deg);
}

.sustainability-home-card h4 {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.sustainability-home-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .sustainability-home-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-badge--1, .hero-badge--3 { left: 2%; }
  .hero-badge--2, .hero-badge--4 { right: 2%; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-badge {
    display: none; /* hide on mobile for clean look */
  }
  .hero-trust-row {
    gap: 0.6rem;
  }
  .hero-trust-item {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }
  .hero-ticker-track span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}
