/* ===============================
   GLOBAL RESET (GAP FIX)
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR FIX */
header, nav, .navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin: 0 !important;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 80px; }
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {
  .page-banner {
    height: 350px;
  }

  .banner-content {
    margin-top: 70px; /* Navbar Adjustment */
    padding: 0 15px;
  }

  .banner-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .banner-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .banner-breadcrumb {
    padding: 6px 20px;
    font-size: 13px;
  }
}

/* ===============================================
   EXPORT IMAGE SECTION
================================================ */
.export-image-section {
  width: 100%;
  padding: 0;
  margin: 80px 0;
  position: relative;
}

.export-image-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.export-image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.export-image-section img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* ===============================================
   CTA SECTION - BUTTON VISIBLE FIX
================================================ */
.cta-section {
  background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
  text-align: center;
  padding: 100px 40px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(42, 93, 39, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


.cta-section h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
  font-weight: 400;
}

/* BUTTONS - FORCE VISIBILITY */
.cta-buttons {
  margin-top: 50px !important;
  display: flex !important;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1 !important;
  visibility: visible !important;
}

.cta-buttons .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
}

.btn-primary {
background-color: #000 !important;
  color: #000 !important;
  border: 2px solid #2a5d27 !important;}

.btn-primary:hover {
  background-color: #000 !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(42, 93, 39, 0.2);
  text-decoration: none;
}

.btn-secondary{
  background-color: #000 !important;
  color: #000 !important;
  border: 2px solid #2a5d27 !important;
}

.btn-secondary:hover {
  background-color: #000 !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(42, 93, 39, 0.2);
  text-decoration: none;
}

/* ===============================================
   EXPORT REACH SECTION
================================================ */
.export-reach-section {
  background: #ffffff;
  padding: 100px 20px;
  margin: 80px 0;
  position: relative;
}

.export-reach-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.export-reach-section h2 {
  font-size: 34px;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1.2;
}

.export-reach-section .justify-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
  hyphens: auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* EXPORT MAP */
.export-map {
  width: 100%;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.export-map img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.8s ease;
}

.export-map:hover img {
  transform: scale(1.05);
}

/* ===============================================
   ANIMATIONS
================================================ */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-text {
  opacity: 1 !important;
  animation: fadeInUp 1s ease forwards;
}

.animate-text:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-text:nth-child(2) {
  animation-delay: 0.4s;
}

.animate-text:nth-child(3) {
  animation-delay: 0.6s;
}

.animate-text:nth-child(4) {
  animation-delay: 0.8s;
}

/* ===============================================
   RESPONSIVE
================================================ */
@media (max-width: 1200px) {
  .banner-title { font-size: 54px; }
  .cta-section h2,
  .export-reach-section h2 {
    font-size: 42px;
  }
  .export-map img {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .page-banner {
    height: 70vh;
    background-attachment: scroll;
  }
  .banner-title { font-size: 48px; }
  
  .cta-section {
    padding: 80px 30px;
    margin: 60px 0;
  }
  
  .export-reach-section {
    padding: 80px 20px;
    margin: 60px 0;
  }
  
  .cta-section h2,
  .export-reach-section h2 {
    font-size: 30px;
  }
  
  .cta-section p,
  .export-reach-section .justify-text {
    font-size: 12px;
  }
  
  .export-map img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .banner-title { font-size: 42px; }
  .banner-subtitle { font-size: 18px; }
  
  .export-image-section {
    margin: 60px 0;
  }
  
  .cta-section {
    padding: 60px 20px;
    margin: 50px 0;
  }
  
  .export-reach-section {
    padding: 60px 20px;
    margin: 50px 0;
  }
  
  .cta-section h2,
  .export-reach-section h2 {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .export-map img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .banner-title { font-size: 36px; }
  .banner-subtitle { font-size: 16px; }
  .banner-breadcrumb { font-size: 13px; padding: 10px 20px; }
  
  .cta-section h2,
  .export-reach-section h2 {
    font-size: 30px;
  }
  
  .cta-section p,
  .export-reach-section .justify-text {
    font-size: 15px;
  }
  
  .cta-buttons .btn {
    padding: 16px 30px;
    font-size: 14px;
  }
  
  .export-map img {
    height: 220px;
  }
}


/* ===============================================
   PROFESSIONAL BUTTON COLORS - FIXED
================================================ */
.cta-buttons .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
}

/* READ MORE ABOUT US - GREEN SOLID */
.btn-primary {
  background-color: #2a5d27 !important;
  color: #ffffff !important;
  border: 2px solid #2a5d27 !important;
  box-shadow: 0 8px 20px rgba(42, 93, 39, 0.2);
}

.btn-primary:hover {
  background-color: #1f4220 !important;
  color: #ffffff !important;
  border-color: #1f4220 !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(42, 93, 39, 0.4);
  text-decoration: none;
}

/* GET IN TOUCH - GREEN OUTLINED */
.btn-secondary {
 background-color: #2a5d27 !important;
  color: #ffffff !important;
  border: 2px solid #2a5d27 !important;
  box-shadow: 0 8px 20px rgba(42, 93, 39, 0.2);
}

.btn-secondary:hover {
  background-color: #1f4220 !important;
  color: #ffffff !important;
  border-color: #1f4220 !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(42, 93, 39, 0.4);
  text-decoration: none;
}