body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #dbdbdb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HERO */
.header-body {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

.text-content {
  flex: 1;
  color: #000;
  padding-right: 1rem;
  z-index: 2;
}

.text-content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 300;
}

.text-content h4 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.text-content button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: orangered;
  border: none;
  color: white;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.text-content button:hover {
  background: rgb(204, 56, 2);
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-content img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

/* END OF HERO */

/* SERVICES */
.services-wrapper {
  background-color: #fff;
  min-height: 50vh;
  padding: 4rem 0;
  color: #000;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.services-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
}

.services-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background-color: #444;
}

.services-content {
  display: flex;
  justify-content: flex-end;
}

.services-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  border-top: 1px solid #ccc;
  padding: 1.5rem 0;
}

.service-item:first-child {
  border-top: none;
}

.service-item:last-child {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-header h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}

.expand-btn {
  background: transparent;
  border: none;
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.expand-btn.expanded {
  transform: rotate(45deg);
}

.service-content {
  margin-top: 1.5rem;
  color: #4c4c4c;
  line-height: 1.6;
  display: none;
}

.service-content.active {
  display: block;
}

.service-image-mobile {
  display: none;
}

/* END OF SERVICES */

/* FAQ */
.faq-wrapper {
  background-color: #fff;
  padding: 4rem 0;
  min-height: 50vh;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  color: #000;
}

.faq-content {
  display: flex;
  justify-content: flex-end;
}

.faq-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  padding-right: 2rem;
}

.faq-answer {
  margin-top: 1.5rem;
  color: #4c4c4c;
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

@media (max-width: 768px) {
  .faq-wrapper {
    padding: 2rem 0;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-header h1 {
    font-size: 2.5rem;
  }

  .faq-content {
    flex-direction: column;
  }

  .faq-list {
    width: 100%;
  }

  .faq-question h3 {
    font-size: 1.125rem;
  }
}

/* TESTIMONIALS */
.testimonials-page {
  background-color: #fff;
  padding: 2rem 0;
  min-height: 60vh;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.title-container {
  border-bottom: 1px solid #000;
  width: 100%;
  margin-bottom: 2rem;
}

.title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.testimonials-content {
  width: 50%;
  margin-left: auto;
}

.testimonials-slider {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 350px;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide.previous {
  opacity: 0;
  transform: translateX(-100%);
}

.testimonial-date {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-author img {
  width: auto;
  height: 150px;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.author-position {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.navigation-controls {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-button {
  background: none;
  border: none;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .testimonials-content {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0 1rem;
  }

  .testimonials-content {
    width: 100%;
  }

  .title {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author img {
    width: auto;
    height: 130px;
    object-fit: cover;
  }
}

/* END OF TESTIMONIALS */

/* CONTACT US */
.contact-wrapper {
  background-color: #fff;
  padding: 4rem 0;
  min-height: 60vh;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  color: #000;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-right h2 {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 2rem;
}

.whatsapp-button {
  margin: 2rem 0 3rem 0;
}

.whatsapp-button a {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-button a:hover {
  background-color: #128c7e;
}

.whatsapp-button i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.contact-info h3 {
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #000;
  font-size: 1rem;
}

.contact-info i {
  margin-right: 0.75rem;
  color: #000;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .contact-header h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 2rem 0;
  }

  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-right h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .header-body {
    position: relative;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: left;
    height: 100%;
  }

  .text-content h1 {
    font-size: 2.5rem;
    color: white;
  }

  .image-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }

  .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .services-wrapper {
    padding: 2rem 0;
  }

  .services-container {
    padding: 0 1.5rem;
  }

  .services-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .services-content {
    flex-direction: column;
  }

  .services-list {
    width: 100%;
  }

  .service-image-mobile {
    display: block;
    margin: 1.5rem 0;
  }

  .service-image-mobile img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  .service-header h2 {
    font-size: 1.25rem;
  }

  .service-content {
    font-size: 0.875rem;
  }

  .read-more-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }
}

