/* FULL TEAL THEME — #00C2A8 REPLACEMENT */
/* -------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

/* 🔔 RINGTONE ANIMATION */
@keyframes ringtone {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  30% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(5deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: 0.3s ease;
  animation: ringtone 1.5s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

:root {
  --primary-color: #fe5b3e;
  --text-dark: #0f172a;
  --text-light: #475569;
  --extra-light: #f2f2f2;
  --white: #ffffff;
  --max-width: 1200px;
  --gradient: linear-gradient(to bottom, #fe5b3e, #cc482f);
}

body.dark {
  --text-dark: #f8fafc;
  --text-light: #cbd5e1;
  --extra-light: #1e293b;
  --white: #0f172a;
  background-color: #020617;
  /* Deep dark background */
}

/* Nav Actions Container */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.theme-toggle-btn:hover {
  color: var(--primary-color);
  transform: rotate(15deg);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: #474fa0;
  white-space: nowrap;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: #3c4286;
}

img {
  display: flex;
  width: 100%;
}

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

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
}

header {
  position: relative;
}

header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  z-index: -1;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
  opacity: 0;
  /* Hide visually */
  visibility: hidden;
  /* Prevent interaction */
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__links a {
  font-weight: 700;
  color: var(--white);
}

.nav__links .btn {
  padding: 0;
  background-color: transparent;
}

.nav__btns {
  display: none;
}

.header__container {
  display: grid;
  gap: 2rem 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header__container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient);
  border-radius: 1rem 1rem 0.5rem 0.5rem;
  z-index: -1;
}

.header__content h1 {
  position: relative;
  isolation: isolate;
  margin-bottom: 2rem;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 3.25rem;
}

.header__content h1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  height: 4px;
  width: 2rem;
  background-color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__links img {
  max-width: 125px;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.steps__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.steps__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.steps__card {
  text-align: center;
}

.steps__card span {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 10px 17px;
  font-size: 1.75rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.steps__card:hover span {
  padding: 14px 21px;
  background: var(--gradient);
  color: var(--white);
  border: none;
}

.steps__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.steps__card p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.service__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.service__list {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service__list li span {
  padding: 12px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.service__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__list p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.map__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.map__wrapper {
  margin-top: 3rem;
  position: relative;
}

.map__link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.map__link:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
}

.map__embed {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.map__embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 1rem;
}

.map__address {
  background-color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 3px solid var(--primary-color);
}

.map__address span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.map__address p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map__click-hint {
  margin-left: auto;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
  font-style: italic;
}

@media (width > 768px) {
  .map__address {
    padding: 2rem;
  }

  .map__address p {
    font-size: 1.25rem;
  }
}

.language-switcher {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  z-index: 9999;
}

.language-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-btn i {
  font-size: 1.2rem;
}

.language-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.language-panel {
  width: 220px;
  padding: 0.85rem;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
}

.language-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (width > 768px) {
  .language-switcher {
    position: relative;
    left: auto;
    bottom: auto;
    flex-direction: row;
    align-items: center;
    z-index: auto;
  }

  .language-btn {
    padding: 0.5rem;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    box-shadow: none;
    border-radius: 0;
  }

  .language-btn:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
  }

  .language-panel {
    top: 100%;
    bottom: auto;
    right: 0;
    left: auto;
    margin-bottom: 0;
    margin-top: 10px;
    z-index: 1000;
  }
}

.language-panel p {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.language-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--extra-light);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  outline: none;
}

.language-option+.language-option {
  margin-top: 0.4rem;
}

.language-option:hover {
  background-color: rgba(254, 91, 62, 0.1);
  transform: translateX(3px);
}

.language-option.active {
  background-color: rgba(254, 91, 62, 0.15);
  border-color: rgba(254, 91, 62, 0.3);
}

.flag {
  width: 22px;
  height: 15px;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  display: inline-block;
}

.flag-fr {
  background-image: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66%);
}

.flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23CF142B' stroke-width='6' d='M0 18h60M30 0v36'/%3E%3Cpath stroke='%23002D72' stroke-width='6' d='M0 0l60 36M60 0L0 36'/%3E%3Cpath stroke='%23FFF' stroke-width='2' d='M0 0l60 36M60 0L0 36'/%3E%3C/g%3E%3C/svg%3E");
}


.experience__container :is(.section__subheader, .section__header) {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.experience__content {
  max-width: 1024px;
  margin-inline: auto;
  margin-top: 4rem;
  position: relative;
  isolation: isolate;
}

.experience__content img {
  max-width: 300px;
  margin-inline: auto;
  opacity: 0.5;
}

.experience__card {
  position: absolute;
  max-width: 200px;
}

.experience__card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 10px 13px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.experience__card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.experience__card:nth-child(1) {
  top: 5rem;
  left: 1rem;
}

.experience__card:nth-child(2) {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.experience__card:nth-child(3) {
  bottom: 5rem;
  left: 1rem;
}

.experience__card:nth-child(4) {
  top: 5rem;
  right: 1rem;
  text-align: right;
}

.experience__card:nth-child(5) {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  text-align: right;
}

.experience__card:nth-child(6) {
  bottom: 5rem;
  right: 1rem;
  text-align: right;
}

.download__container {
  overflow: hidden;
}

.download__grid {
  display: grid;
  padding: 2rem 1rem;
  background: var(--gradient);
  border-radius: 1rem;
}

/* ✅ FIXED — VIDEO NOW SHOWS */
.download__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.download__image video {
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}

.download__content .section__header {
  margin-bottom: 1rem;
  color: var(--white);
}

.download__content p {
  margin-bottom: 1rem;
  color: var(--extra-light);
  line-height: 1.75rem;
}

.download__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download__links img {
  max-width: 125px;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
  border-bottom: 1px solid var(--text-light);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 600;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bar h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__bar p {
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.footer__socials a:hover {
  color: var(--white);
  background: var(--gradient);
}

@media (width > 540px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (width > 768px) {
  header::before {
    height: calc(100% - 4rem);
  }

  nav {
    position: relative;
    /* Changed from static to relative to establish stacking context */
    z-index: 1000;
    /* Ensure nav sits above other content */
    padding-block: 2rem;
    padding-inline: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    font-weight: 800;
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    background-color: transparent;
    transform: none;
    opacity: 1;
    /* Force visible on desktop */
    visibility: visible;
    /* Force visible on desktop */
  }

  .nav__links a {
    padding-block: 5px;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
  }

  .nav__links a:hover {
    border-color: var(--primary-color);
  }

  .nav__links__btn {
    display: none;
  }

  .nav__btns {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
  }

  .nav__btns .btn__primary {
    color: var(--text-dark);
    background-color: transparent;
  }

  .header__container {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }

  .header__container::before {
    right: 5rem;
    width: calc(50% - 4rem);
    height: 100%;
  }

  .header__image {
    grid-column: 3/6;
  }

  .header__content {
    grid-area: 1/1/2/3;
  }

  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .experience__content img {
    opacity: 1;
  }

  .experience__card:nth-child(1) {
    left: 5rem;
  }

  .experience__card:nth-child(3) {
    left: 5rem;
  }

  .experience__card:nth-child(4) {
    right: 5rem;
  }

  .experience__card:nth-child(6) {
    right: 5rem;
  }

  .download__grid {
    margin-block: 4rem;
    padding-inline: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  /* ✅ FIXED DESKTOP VERSION */
  .download__image {
    display: flex;
    position: relative;
    isolation: isolate;
  }

  .download__image video {
    position: absolute;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__bar {
    flex-direction: row;
  }

  .footer__bar :is(h4, .footer__socials) {
    flex: 1;
  }

  .footer__socials {
    justify-content: flex-end;
  }
}


/* POPULAR SECTION */
.popular__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.popular__container .section__subheader {
  color: var(--text-light);
}

.popular__categories {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.popular__categories button {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: var(--extra-light);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
}

.popular__categories button.active,
.popular__categories button:hover {
  background: var(--primary-color);
  color: white;
}

.popular__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.popular__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
}

.popular__card:hover {
  transform: translateY(-5px);
}

.popular__gallery {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.popular__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  transition: background-color 0.3s, color 0.3s;
}

.gallery__btn--prev {
  left: 0.75rem;
}

.gallery__btn--next {
  right: 0.75rem;
}

.gallery__btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.gallery__btn--hidden {
  display: none;
}

.gallery__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.gallery__dot.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.popular__card__content {
  padding: 1rem 1.2rem;
}

.popular__rating {
  color: gold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.popular__rating span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.popular__details {
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
  color: var(--text-light);
}

.popular__details i {
  color: var(--primary-color);
  margin-right: 5px;
}

.popular__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.popular__price h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
}

.card__rent {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.card__rent:hover {
  text-decoration: underline;
}

.popular__container .section__subheader,
.popular__container .section__header {
  text-align: center;
}

.popular__categories {
  justify-content: center;
}

@media (width > 768px) {
  .popular__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .popular__card {
    max-width: 100%;
  }
}

@media (width > 1024px) {
  .popular__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CLIENT REVIEWS */
.client__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.client__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.client__card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.client__card:hover {
  transform: translateY(-5px);
}

.client__stars {
  color: #ffc107;
  font-size: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.client__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #dbeafe;
  /* Light blueish color for quote */
  opacity: 0.5;
}

.client__card p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.client__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (width < 900px) {
  .client__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 600px) {
  .client__grid {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP BUTTON IN DOWNLOAD SECTION */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ SECTION */
.faq__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.faq__grid {
  max-width: 900px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq__header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--extra-light);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__content p {
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

/* Active State */
.faq__item.active {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
}

.faq__item.active .faq__icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotate(45deg);
  /* Rotate plus to X, or use minus icon logic in JS */
}

.faq__item.active .faq__content {
  max-height: 200px;
  /* Adjust based on content */
}