/* ====================== ARPINOX CATALOGUE SECTION ====================== */
.arpinox-catalogue-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.catalogue-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-image {
  flex: 1 1 450px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.catalogue-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.catalogue-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.catalogue-content {
  flex: 1 1 600px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.catalogue-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #2a6f2a;
  line-height: 1.2;
}

.catalogue-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: justify;
  color: #444;
}

.catalogue-buttons a {
  text-decoration: none;
  padding: 14px 30px;
  margin-right: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2a6f2a;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1f4d1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #555;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ====================== CONTACT GLOBAL HEAD SECTION ====================== */
.contact-global-head-section {
  padding: 80px 0;
  background-color: #f0f8f5;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Image Styling */
.contact-image {
  flex: 1 1 450px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.contact-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Right Content Styling */
.contact-content {
  flex: 1 1 600px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.contact-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: #2a6f2a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contact-content h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f4d1f;
}

.contact-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: justify;
  color: #444;
}

/* ===============================================
   CONTACT BUTTONS FIX (LINKEDIN & WHATSAPP)
================================================ */
.contact-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-buttons a {
  display: inline-flex !important; /* Flexbox for alignment */
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px; /* Fixed minimum width for consistency */
  height: 50px;     /* Fixed height */
  padding: 0 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #fff !important;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevents text from breaking into two lines */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Icons styling (gap between icon and text) */
.contact-buttons a i, 
.contact-buttons a img, 
.contact-buttons a svg {
  margin-right: 10px;
  font-size: 20px;
}

/* LinkedIn Button Style */
.btn-linkedin {
  background-color: #0077b5;
  border: 1px solid #0077b5;
}

.btn-linkedin:hover {
  background-color: #005e93;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.3);
}

/* WhatsApp Button Style */
.btn-whatsapp {
  background-color: #25d366;
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive */
@media screen and (max-width: 576px) {
  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-buttons a {
    width: 100%; /* Full width on mobile */
    min-width: unset;
  }
}
/* Animation Classes */
.animate-left.visible,
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ====================== RESPONSIVE ====================== */
@media screen and (max-width: 1024px) {
  .catalogue-wrapper,
  .contact-wrapper {
    gap: 40px;
  }

  .catalogue-content h2,
  .contact-content h2 {
    font-size: 42px;
  }

  .contact-content h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .catalogue-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .catalogue-content,
  .contact-content {
    flex: 1 1 100%;
  }

  .catalogue-content h2,
  .contact-content h2 {
    font-size: 36px;
  }

  .catalogue-content p,
  .contact-content p {
    text-align: center;
  }

  .catalogue-buttons,
  .contact-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .catalogue-buttons a,
  .contact-buttons a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .catalogue-content h2,
  .contact-content h2 {
    font-size: 32px;
  }

  .contact-content h4 {
    font-size: 20px;
  }

  .catalogue-content p,
  .contact-content p {
    font-size: 16px;
  }

  .catalogue-buttons a,
  .contact-buttons a {
    padding: 12px 24px;
    font-size: 15px;
  }
}