/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-green: #00ff88;
  --secondary-green: #2d5a27;
  --accent-blue: #00d4ff;
  --warm-yellow: #ffeb3b;
  --deep-forest: #0a1a0a;
  --light-mint: #e8fff0;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.3);
}

body {
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  heigh/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #EE007D;
  border-radius: 2px;
}

/* ===== ABOUT CONTENT SECTION ===== */
.about-content-section {
  background: #ffffff;
  padding: 120px 40px;
  text-align: center;
}

.about-content-section.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.about-content-text h2 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

/* ===== ABOUT TEXT SECTION ===== */
.about-text-section {
  background: #ffffff;
  color: #000000;
  padding: 10%;
  text-align: left;
}

.about-text-section p,
.about-text-section h2,
.about-text-section h3 {
  color: #000000;
  margin-bottom: 10px;
}

.about-text-section h3 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-width: 768px) {
  .about-text-section h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .about-text-section h3 {
    font-size: 24px;
  }
}


.about-text-section h4 {
  font-size: 30px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-button {
  background: #EE007D;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  margin-top: 10px;
}

.about-text-section hr {
  margin-top: 50px;
  border: none;
  border-top: 1px solid #ddd;
}

/* ===== FOOTER CTA SECTION ===== */
.footer-cta-section {
  margin: 80px 20px;
  padding: 0;
}

.footer-cta-container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 60px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 50%, #bababa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.footer-cta-content1 {
  flex: 1;
  text-align: left;
  z-index: 2;
  position: relative;
}

.footer-cta-content1 h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-cta-content1 p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.footer-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.footer-cta-visual img {
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 3;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.footer-cta-container {
  position: relative;
  width: 80%;
  height: 300px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 36px;
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-cta-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
}

.footer-cta-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
}

.footer-cta-content {
  flex: 1;
  z-index: 2;
  position: relative;
  max-width: 810px;
  text-align: left;
}

.footer-cta-content h2 {
  font-size: 2.25rem;
  color: #ff0189;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  font-family: sans-serif;
}

.footer-cta-button {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-height: 48px;
  margin: 0;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
  background: #f8f9fa;
  border: 2px solid #EE007D;
  color: #1a1a1a;
  transform: none;
  box-shadow: none;
}

.footer-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.gradient-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%);
  position: absolute;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.gradient-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.gradient-circle::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

/* ===== CLOSING SECTION (REMOVED) ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title h1 {
    font-size: 2.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .about-content-text h2 {
    font-size: 2.5rem;
  }

  .about-content-section {
    padding: 80px 20px;
  }

  .about-content-section:not(.hero-section) .about-content-text h2 {
    font-size: 2.2rem;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .stats-section h2 {
    font-size: 2.2rem;
  }

  .stats-grid {
    gap: 40px;
  }

  .stat-card {
    gap: 20px;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

  .stat-content h3 {
    font-size: 1.2rem;
  }

  .stat-content p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h1 {
    font-size: 1.8rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Mobile layout - all text content first, then all images */
  .details-grid .detail-card.text-content {
    order: 1;
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .details-grid .detail-card.image-content {
    order: 2;
    padding-left: 0;
  }
  
  /* Group all text content together */
  .details-grid:nth-child(1) .detail-card.text-content { order: 1; }
  .details-grid:nth-child(2) .detail-card.text-content { order: 2; }
  .details-grid:nth-child(3) .detail-card.text-content { order: 3; }
  .details-grid:nth-child(4) .detail-card.text-content { order: 4; }
  
  /* Group all images together after text */
  .details-grid:nth-child(1) .detail-card.image-content { order: 5; }
  .details-grid:nth-child(2) .detail-card.image-content { order: 6; }
  .details-grid:nth-child(3) .detail-card.image-content { order: 7; }
  .details-grid:nth-child(4) .detail-card.image-content { order: 8; }
  
  .detail-card h3 {
    font-size: 1.8rem;
  }
  
  .detail-image {
    height: 250px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    height: auto;
    gap: 16px;
  }

  .footer-cta-container1 {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-cta-content1 {
    text-align: center;
  }

  .footer-cta-content1 h2 {
    font-size: 2rem;
    color: #ffffff;
  }

  .footer-cta-content1 p {
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-cta-visual {
    order: -1;
  }

  .footer-cta-content {
    max-width: 100%;
  }

  .footer-cta-content h2 {
    font-size: 1.125rem;
    text-align: center;
  }

  .footer-cta-button {
    width: fit-content;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title h1 {
    font-size: 2rem;
  }

  .about-content-text h2 {
    font-size: 2rem;
  }

  .about-content-section {
    padding: 60px 15px;
  }

  .about-content-section:not(.hero-section) .about-content-text h2 {
    font-size: 1.8rem;
  }

  .about-container {
    padding: 0 15px;
  }

  .stats-section {
    padding: 40px 15px;
  }

  .stats-section h2 {
    font-size: 1.8rem;
  }

  .stats-section > p {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .stats-grid {
    gap: 35px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    align-self: center;
  }

  .stat-icon i {
    font-size: 1.3rem;
  }

  .stat-content h3 {
    font-size: 1.1rem;
  }

  .stat-content p {
    font-size: 0.95rem;
  }

  .feature-number {
    font-size: 2rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-container {
    padding: 30px 20px;
    margin: 40px 10px;
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-container1 {
    width: 100%;
    margin: 40px 0;
    padding: 30px 15px;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-cta-content1 {
    text-align: center;
  }

  .footer-cta-content1 h2 {
    font-size: 1.8rem;
    color: #ffffff;
  }

  .footer-cta-content1 p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-cta-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-cta-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .footer-cta-button {
    margin-left: 0;
  }

  .cta-section,
  .stats-section,
  .features-section,
  .about-details-section,
  .brands-section {
    padding: 60px 20px;
  }
}
}
.feature-number video {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== TRADE CONTENT SECTION - MODERN UI ===== */
.trade-content-section.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.trade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
z-index: 1;
}

.trade-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 2;
}

.trade-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
}

.trade-content-text {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.trade-content-text h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trade-content-text p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 45px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.trade-content-text button {
  background: linear-gradient(135deg, #EE007D 0%, #ff1493 100%);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(238, 0, 125, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trade-content-text button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.trade-content-text button:hover::before {
  left: 100%;
}

.trade-content-text button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(238, 0, 125, 0.6);
  background: linear-gradient(135deg, #ff1493 0%, #EE007D 100%);
}

.trade-content-text button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Floating Elements */
.trade-content-section.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .trade-content-section.hero-section {
    min-height: 75vh;
    padding: 80px 20px;
  }
  
  .trade-content-text {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .trade-content-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
  
  .trade-content-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
  }
  
  .trade-content-text button {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .trade-content-section.hero-section {
    min-height: 70vh;
    padding: 60px 15px;
  }
  
  .trade-content-text {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .trade-content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .trade-content-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .trade-content-text button {
    padding: 14px 35px;
    font-size: 1rem;
  }
}
  

.footer-cta-content1 {
  flex: 1;
  text-align: left;
}


.footer-cta-visual img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ===== UPDATED BACK TO TOP ===== */
.back-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 0 !important;
  background: linear-gradient(135deg, #EE007D 0%, #ec3e9b 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 20px 0 0 20px !important;
  width: 60px !important;
  height: 60px !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: -4px 4px 20px rgba(212, 6, 140, 0.4) !important;
  z-index: 999 !important;
  padding-left: 10px !important;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ec3e9b 0%, #EE007D 100%) !important;
  transform: translateX(-5px) !important;
  box-shadow: -8px 4px 25px rgba(212, 6, 143, 0.6) !important;
}

.back-to-top.show {
  display: flex !important;
}
/* ===== FOOTER CTA CONTAINER WIDTH OVERRIDE ===== */
.footer-cta-container {
  width: 100% !important;
}