.firm-structure {
  background: #f9f9f9;
  padding: 5rem 1rem;
  color: #000;
}
.firm-structure h2 {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  position: relative;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border: 1px solid gold;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #000;
  align-items: center;
  color: gold;
  border: none;
  text-align: left;
  padding: 1.2rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.accordion-header .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.accordion-header:hover {
  background: #00a86b;
  color: #fff;
}
.accordion-content {
  background: #fff;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 1rem;
}
.accordion-content p {
  margin: 1rem 0;
}
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 1rem;
}
.accordion-item.active .accordion-header {
  background: gold;
  color: #000;
}
.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}
/*NEWSLETTER SECTION .......................................................................................................*/
.newsletter {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(167, 20, 28, 0.05);
  border-radius: 50%;
  z-index: 0;
}
.newsletter-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.newsletter-illustration img {
  width: 120px;
  margin-bottom: 25px;
  animation: float 4s ease-in-out infinite;
  opacity: 0.9;
}
.newsletter-content h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}
.newsletter-content p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s;
  background: #fff;
}
.newsletter-form input:focus {
  border-color: #a7141c;
  box-shadow: 0 0 0 3px rgba(167, 20, 28, 0.1);
  outline: none;
}
.newsletter-form button {
  background-color: #a7141c;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background-color: #8f1218;
  transform: translateY(-1px);
}

/* CONSULTATION/CLIENTS SECTION ....................................................................................................... */
.client-cta2 {
  position: relative;
  background: url("images/administrator.JPG") center/cover no-repeat;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* angled bottom */
}
.client-cta2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}
.client-cta2 .container2 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1.2s ease-out forwards;
}
.client-cta2 h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}
.client-cta2 strong {
  color: #ffd700;
  text-shadow: 2px 2px 12px rgba(255, 215, 0, 0.7);
}
.cta-buttons2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn2 {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.gold-btn2 {
  background: #ffd700;
  color: #000;
}
.gold-btn2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}
.gold-btn2:hover::after {
  left: 200%;
}
.secondary-btn2 {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid #fff;
}
.secondary-btn2:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

/* PK........................................................................................ */

.lb-image {
  max-width: 95vw !important;
  max-height: 95vh !important;
}

/* Optional: darken background more */

/* POPUP BACKDROP */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
/* MODAL BOX */
.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  position: relative;
  z-index: 100000;
}
/* HEADER TEXT FIX */
.modal-content h3 {
  position: relative;
  z-index: 1000001;
}
/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
}
/* OPTIONS */
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.option {
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: 0.2s;
}
.call {
  background: #ffd700;
  color: black;
} /* Yellow */
.whatsapp {
  background: #25d366;
} /* WhatsApp green for clarity */
.form {
  background: #333;
} /* Black */
.option:hover {
  opacity: 0.8;
}

/* 📱 RESPONSIVE DESIGN FOR ABOUT PAGE ....................................................................................................... */
@media (max-width: 768px) {
  .newsletter-content h2 {
    font-size: 1.6rem;
  }
  .newsletter-content p {
    font-size: 0.95rem;
  }
  .newsletter-illustration img {
    width: 90px;
  }
}
