:root {
  --gold: #C9973A;
  --gold-light: #F0C96A;
  --gold-pale: #FDF5E6;
  --dark: #0D1B14;
  --dark-2: #152318;
  --dark-3: #1E3020;
  --green: #2D5E3A;
  --green-mid: #3E7A4E;
  --green-light: #5A9E6A;
  --cream: #FAF6EE;
  --white: #FFFFFF;
  --gray: #666;
  --light-gray: #F5F5F0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13,27,20,0.96);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(201,151,58,0.2);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--dark);
  background-image:
    linear-gradient(135deg, rgba(13, 27, 20, 0.85) 0%, rgba(13, 27, 20, 0.7) 45%, rgba(30, 48, 32, 0.78) 100%),
    url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,151,58,0.03) 0px, rgba(201,151,58,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(201,151,58,0.03) 0px, rgba(201,151,58,0.03) 1px, transparent 1px, transparent 60px);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,151,58,0.5);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 2rem;
  background: rgba(201,151,58,0.08);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.5rem;
  z-index: 2;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}
.stat-card .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* SECTION WRAPPER */
section { padding: 6rem 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
}
.section-header { margin-bottom: 3.5rem; }

/* ABOUT */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image-block { position: relative; }
.about-img-main {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: 12px;
  display: block;
}
.about-img-placeholder {
  width: 100%; height: 460px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,151,58,0.3);
}
.about-badge-float small { display: block; font-size: 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cert-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-pill {
  background: var(--gold-pale);
  color: var(--dark);
  border: 1px solid rgba(201,151,58,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem; font-weight: 600;
}
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.feat-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* PRODUCTS */
#products { background: var(--light-gray); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.product-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.product-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.product-body { padding: 1.25rem; }
.product-tag {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(62,122,78,0.08);
  padding: 3px 10px; border-radius: 10px;
  display: inline-block; margin-bottom: 0.5rem;
}
.product-name { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* MISSION & VISION */
#mission { background: var(--white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.mission-card {
  background: var(--cream);
  border: 1px solid rgba(201, 151, 58, 0.22);
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
}
.mission-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.mission-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.mission-card-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

/* GALLERY */
#gallery { background: var(--dark); padding: 6rem 5%; }
#gallery .section-title { color: var(--white); }
#gallery .section-sub { color: rgba(255,255,255,0.5); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,20,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-size: 0.88rem; font-weight: 500;
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* MARKETS */
#markets { background: var(--white); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.market-card {
  background: var(--light-gray);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.2s;
}
.market-card:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
}
.market-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.market-name { font-size: 0.88rem; font-weight: 600; }

/* SERVICES */
#services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* TESTIMONIALS */
#testimonials { background: var(--green); overflow: hidden; }
#testimonials .section-title { color: var(--white); }
#testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-track { display: flex; gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem;
  min-width: 340px;
  flex-shrink: 0;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--dark); font-size: 0.95rem;
}
.author-name { font-weight: 600; color: var(--white); font-size: 0.92rem; }
.author-loc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* FAQ */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 960px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--light-gray); }
.faq-q .arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light-gray);
}
.faq-a.open { max-height: 200px; }
.faq-a p {
  padding: 1rem 1.5rem;
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.7;
}

/* CONTACT */
#contact { background: var(--dark); }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.5); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,151,58,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-info-val { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #080F0B;
  padding: 3rem 5% 0;
  border-top: 1px solid rgba(201,151,58,0.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-head {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.35); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-copyright {
  background: linear-gradient(180deg, rgba(13, 27, 20, 0.98) 0%, #040705 100%);
  border-top: 1px solid rgba(201, 151, 58, 0.18);
  margin-top: 2rem;
  padding: 1.35rem 0 1.75rem;
}
.footer .auto-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.copyright-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
}
.copy-text {
  flex: 1;
  min-width: min(100%, 280px);
  text-align: left;
}
.copy-text p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.75;
  color: #fff;
}
.copy-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.copy-text a:hover {
  color: var(--gold);
}
.copy-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.95);
}
.copy-meta a {
  color: #fff;
}
.copy-meta a:hover {
  color: var(--gold-light);
}
.copy-logo {
  flex-shrink: 0;
  margin-left: auto;
  text-align: right;
}
.exportersway-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.exportersway-link:hover {
  color: var(--gold);
}
.exportersway-badge {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 3px 6px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.exportersway-label {
  white-space: nowrap;
}

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media(max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav .nav-links { display: none; }
}
@media(max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .copyright-row {
    flex-direction: column;
    align-items: stretch;
  }
  .copy-logo {
    margin-left: 0;
    text-align: left;
  }
}
