/* ==========================================================================
   COLOR PALETTE & CSS VARIABLES (Premium Earth + Ocean)
   ========================================================================== */
:root {
  --primary-forest: #173F35;
  --secondary-cocoa: #6B4226;
  --accent-gold: #C99A3E;
  --accent-gold-hover: #b0842e;
  --bg-ivory: #F7F4EC;
  --text-charcoal: #202725;
  --text-muted: #53605c;
  --white: #FFFFFF;
  --light-sage: #DCE8DF;
  --dark-footer: #0e2822;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(23, 63, 53, 0.05);
  --shadow-md: 0 10px 30px rgba(23, 63, 53, 0.08);
  --shadow-lg: 0 20px 40px rgba(23, 63, 53, 0.12);
  --border-radius: 8px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--accent-gold) !important; }

/* ==========================================================================
   TYPOGRAPHY & HEADINGS
   ========================================================================== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-cocoa);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.gold-label {
  color: var(--accent-gold);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-forest);
  margin-bottom: 18px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
}

.center-desc {
  margin: 0 auto 50px auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary-forest);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-cocoa);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--text-charcoal);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 154, 62, 0.3);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 14px 0;
  background-color: rgba(247, 244, 236, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-forest);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-charcoal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-forest);
  cursor: pointer;
}

/* =========================================================
   NAVBAR INITIAL STATE (Transparent / Dark Background)
   ========================================================= */

/* Logo Text when NOT scrolled */
.navbar:not(.scrolled) .logo-main {
  color: #ffffff; /* White logo title for high contrast */
}

/* Nav Links when NOT scrolled */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85); /* Off-white text */
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: #ffffff;
}

/* Nav Active Link Indicator Line */
.navbar:not(.scrolled) .nav-link::after {
  background-color: #d4af37; 
}

.navbar:not(.scrolled) .btn-ct {
  background-color: var(--accent-gold-hover); 
  color: #1b3d36;            
  /* border: 1px solid #ffffff; */
}

.navbar:not(.scrolled) .btn-ct:hover {
  background-color: var(--secondary-cocoa); 
  color: #ffffff;
  /* border-color: #d4af37; */
}


/* =========================================================
   NAVBAR SCROLLED STATE (Light / Cream Background)
   ========================================================= */

.navbar.scrolled .logo-main {
  color: #1b3d36; /* Dark green */
}

.navbar.scrolled .nav-link {
  color: #2c3e35; /* Dark grey-green */
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #1b3d36;
}

.navbar.scrolled .btn-ct {
  background-color: #1b3d36; 
  color: #ffffff;            
}

.navbar.scrolled .btn-ct:hover {
  background-color: var(--accent-gold-hover); /* Gold hover */
  color: #ffffff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background-color: var(--primary-forest);
  color: var(--white);
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: var(--white);
  color: var(--text-charcoal);
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
}

.floating-icon {
  width: 42px;
  height: 42px;
  background-color: var(--light-sage);
  color: var(--primary-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* HERO HIGHLIGHTS STRIP */
.hero-highlights {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.highlight-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.highlight-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   BUSINESS HIGHLIGHTS / STATS
   ========================================================================== */
.stats-section {
  padding: 60px 0;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 24px;
  background: var(--bg-ivory);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(23, 63, 53, 0.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-forest);
}

.stat-text h4 {
  font-size: 0.9rem;
  color: var(--secondary-cocoa);
  text-transform: uppercase;
  font-weight: 700;
}

.stat-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--primary-forest);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.exp-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.exp-sub {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.about-highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background-color: var(--light-sage);
  border-left: 4px solid var(--primary-forest);
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary-forest);
  margin: 24px 0 32px 0;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
  background-color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-ivory);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(23, 63, 53, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-forest);
  margin-bottom: 12px;
}

.product-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-cocoa);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card:hover .product-link {
  color: var(--accent-gold);
}

.product-link i {
  transition: transform 0.3s ease;
}

.product-card:hover .product-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-sage);
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: var(--light-sage);
  color: var(--primary-forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary-forest);
  color: var(--accent-gold);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--primary-forest);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 36px 28px;
  background-color: var(--bg-ivory);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 154, 62, 0.2);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.2rem;
  color: var(--primary-forest);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HOW WE WORK (TIMELINE)
   ========================================================================== */
.process-section {
  background-color: var(--bg-ivory);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--light-sage);
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding-right: 40px;
  box-sizing: border-box;
}

.timeline-step:nth-child(even) {
  left: 50%;
  padding-right: 0;
  padding-left: 40px;
}

.step-node {
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-forest);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 6px var(--bg-ivory);
  z-index: 2;
}

.timeline-step:nth-child(even) .step-node {
  right: auto;
  left: -20px;
}

.step-content {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--primary-forest);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.process-tagline {
  margin-top: 40px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary-cocoa);
  font-style: italic;
}

/* ==========================================================================
   MARKETS & INDUSTRIES
   ========================================================================== */
.markets-section {
  background-color: var(--white);
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background-color: var(--light-sage);
  color: var(--primary-forest);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.client-network-card {
  background-color: var(--primary-forest);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.client-network-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.network-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.network-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.network-list i {
  color: var(--accent-gold);
}

/* ==========================================================================
   PACKAGING & CUSTOMIZATION
   ========================================================================== */
.packaging-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.packaging-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.packaging-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.packaging-frame:hover .packaging-img {
  transform: scale(1.05);
}

.pkg-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.pkg-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.pkg-box h4 {
  font-size: 1rem;
  color: var(--secondary-cocoa);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-box ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.pkg-box ul li::before {
  content: '•';
  color: var(--accent-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==========================================================================
   TRADE SUPPORT SECTION
   ========================================================================== */
.trade-support-section {
  padding: 40px 0;
}

.trade-banner {
  background-color: var(--secondary-cocoa);
  color: var(--white);
  padding: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trade-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.trade-banner-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.doc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 300px;
}

.doc-pill {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  background-color: var(--primary-forest);
  color: var(--white);
  padding: 100px 0;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-note {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.company-card {
  background-color: var(--bg-ivory);
  padding: 32px;
  border-radius: 10px;
  margin-top: 30px;
}

.company-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-forest);
  margin-bottom: 6px;
}

.contact-person {
  font-size: 0.9rem;
  color: var(--secondary-cocoa);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-top: 3px;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-item p, .info-item a {
  font-size: 0.95rem;
  color: var(--text-charcoal);
  font-weight: 500;
}

/* FORM STYLES */
.contact-form {
  background-color: var(--bg-ivory);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-charcoal);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 62, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-footer);
  color: var(--white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   ANIMATIONS & REVEAL CLASSES
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* Scroll reveal initial states */
.reveal, .reveal-left, .reveal-right, .reveal-stagger {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-stagger { transform: translateY(30px); }

/* Scroll reveal active state */
.reveal.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-stagger.active {
  opacity: 1;
  transform: translate(0);
}

/* Base keyframe load animations for Hero */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-in-scale {
  animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .markets-grid,
  .packaging-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trade-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero-heading { font-size: 2.2rem; }
  .section-heading { font-size: 2rem; }

  .mobile-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-cta { display: none; }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .services-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line { left: 20px; }
  .timeline-step {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
  }
  .timeline-step:nth-child(even) {
    left: 0;
    padding-left: 60px;
  }
  .step-node { left: 0 !important; }

  .pkg-lists-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}










/* ====================================
            FOOTER
====================================*/
.footer{
    background:#173F35;
    border-top:2px solid #B78B47;
    padding:22px 0;
}

.footer-bottoms{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
}

.footer-copy{
    flex:1;
}

.footer-copy p{
    color:#F5F1E8;
    font-size:15px;
    line-height:1.6;
}

.footer-copy span{
    color:#B78B47;
    font-weight:600;
}

.footer-copy a{
    color:#B78B47;
    transition:.35s ease;
}

.footer-copy a:hover{
    color:#E6C88B;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto;
    flex-shrink:0;
}

.footer-right img{
    width:180px;
    transition:.4s;
}

.footer-right img:hover{
    transform:scale(1.05);
}

/*==========================
      SCROLL BUTTON
==========================*/
.scroll-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:#173F35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.scroll-top:hover{
    background:#B78B47;
    color:#173F35;
    transform:translateY(-6px);
}

/*==========================
      RESPONSIVE
==========================*/
@media(max-width:991px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        justify-content:center;
    }

        .footer-right img{
        width:150px;
    }

    .scroll-top{
        width:52px;
        height:52px;
        font-size:18px;
    }

    .footer-copy p{
        font-size:14px;
        line-height:1.5;
    }
}

@media(max-width:576px){
    .footer{
        padding:18px 0;
    }

    .footer-copy p{
        font-size:13px;
        line-height:1.5;
    }

    .footer-right{
        flex-direction:column;
        gap:20px;
    }

    .footer-right img{
        width:130px;
    }
}