@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* a {
  text-decoration: none;
  color: inherit;
}

main {
  max-width: 1400px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

body {
  background: rgb(255, 255, 255);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

main {
  background: white;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  direction: rtl;
}

@font-face {
  font-family: "Open-Sans";
  src: url(../src/fonts/Open_Sans/OpenSans-VariableFont_wdthwght.ttf) format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
nav {
  position: fixed;
  z-index: 99;
  inset-inline: 0;
  font-family: "Open-Sans", sans-serif;
  font-weight: bold;
  color: white;
  margin: 15px auto;
  max-width: clamp(300px, 95%, 1350px);
  transition: all 0.5s ease;
  padding: 0.3rem;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.0588235294);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1607843137), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 10px;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, 0.1607843137);
}
nav .nav-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 18px;
  left: 20px;
  cursor: pointer;
}
nav .nav-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
nav .nav-contact a svg {
  stroke: white;
  width: 30px;
  height: 30px;
}
nav .nav-contact a svg:hover {
  stroke: #cdaa56;
}
nav .nav-contact a span {
  font-weight: 600;
  transition: all 0.3s ease;
}
nav .nav-contact a span:hover {
  color: #cdaa56;
}
nav .nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
nav .logo-wrap img {
  max-width: 50px;
  height: auto;
  transition: all 0.3s ease;
}
nav .logo-wrap img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  cursor: pointer;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: white;
  transition: all 0.5s ease;
}
nav ul li a:hover {
  color: #cdaa56;
  text-shadow: 0px 0px 1px rgb(255, 255, 255);
}
nav .menu-icon {
  display: none;
}
nav.nav-scrolled {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: center;
  }
  nav .nav-container {
    flex-direction: column-reverse;
    align-items: center;
    max-height: 60px;
    overflow: hidden;
  }
  nav .nav-container.mobile-mode {
    max-height: 500px;
  }
  nav .nav-container ul {
    display: none;
    flex-direction: column;
    align-items: center;
  }
  nav .nav-container ul.open-menu {
    display: flex;
    flex-direction: column-reverse;
  }
  nav .nav-container ul li {
    margin: 0.5rem 0;
  }
  nav .menu-icon {
    display: block;
    position: absolute;
    text-align: center;
    top: 18px;
    right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  nav .menu-icon svg {
    transition: all 0.3s ease;
    stroke: white;
  }
  nav .menu-icon svg:hover {
    stroke: #cdaa56;
  }
  nav .menu-icon svg.active {
    transform: rotate(90deg);
    stroke: #cdaa56;
  }
}
@media (max-width: 1065px) {
  nav .nav-contact span {
    display: none;
  }
}
@media (max-width: 1065px) and (max-width: 768px) {
  nav .nav-contact span {
    display: inline;
  }
}
.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  min-height: -moz-min-content;
  min-height: min-content;
  padding-top: 6rem;
  padding-inline: 2.5rem;
  background-color: #313747;
  background: radial-gradient(circle, rgb(49, 55, 71) 0%, rgb(10, 0, 0) 100%);
}
.hero-section .hero-image-wrap {
  max-width: 350px;
}
@media screen and (max-width: 325px) {
  .hero-section .hero-image-wrap {
    width: 200px;
  }
}
.hero-section .hero-image-wrap img {
  max-width: 100%;
  height: auto;
}
.hero-section .hero-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  max-width: 500px;
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1;
  letter-spacing: -2px;
  text-wrap: nowrap;
  color: white;
  text-shadow: 0px 0px rgb(38, 45, 56);
}
.hero-section .hero-heading h1 {
  font-size: clamp(2rem, 4vw + 1rem, 5rem);
}
.hero-section .hero-heading p {
  font-weight: 400;
}
.hero-section .hero-cta-wrap {
  margin-top: 1rem;
  text-align: center;
}
.hero-section .hero-cta-wrap button {
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
.hero-section .hero-cta-wrap button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
.hero-section .hero-cta-wrap button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
.hero-section .hero-cta-wrap button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
.hero-section .hero-cta-wrap button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-cta-wrap-mobile {
  display: none;
}
@media screen and (max-width: 1065px) {
  .hero-cta-wrap-mobile .hero-cta-wrap {
    display: none;
  }
  .hero-cta-wrap-mobile {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 10px;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .hero-cta-wrap-mobile button {
    background: #cdaa56;
    background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
    font-family: "Open-Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
    letter-spacing: 1px;
    color: black;
    border: none;
    padding: 0.5em;
    border-radius: 5px;
    cursor: pointer;
  }
  .hero-cta-wrap-mobile button::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, white);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    opacity: 0;
  }
  .hero-cta-wrap-mobile button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 5px #cdaa56;
  }
  .hero-cta-wrap-mobile button:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(500%);
  }
  .hero-cta-wrap-mobile button {
    position: relative;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 95vw;
    opacity: 0;
    animation-delay: 1.5s;
    animation: fadeIn 0.9s forwards;
  }
  .hero-cta-wrap-mobile button.hidden {
    display: none;
  }
}

@media screen and (max-width: 1065px) {
  .hero-cta-wrap {
    display: none;
  }
}
.cure-section {
  font-family: "Open-Sans", sans-serif;
  color: white;
}
.cure-section .cure-section-container {
  background-image: url(../src/assets/backgrounds/virtical-background-dark.svg);
  text-align: center;
}
.cure-section .cure-section-container h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
}
.cure-section .cure-section-container h3 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cure-section .cure-section-container .cure-section-expertise {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: space-evenly;
  align-items: center;
  padding: 4rem 0;
}
.cure-section .cure-section-container .cure-section-expertise .about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 2rem;
}
.cure-section .cure-section-container .cure-section-expertise .about-content .about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cure-section .cure-section-container .cure-section-expertise .about-content .about-item p {
  max-width: 55rch;
}
.cure-section .cure-section-container .cure-section-expertise .more-info-btn {
  width: 50%;
}
.cure-section .cure-section-container .cure-section-expertise .more-info-btn button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
.cure-section .cure-section-container .cure-section-expertise .more-info-btn button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
.cure-section .cure-section-container .cure-section-expertise .more-info-btn button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
.cure-section .cure-section-container .cure-section-expertise .more-info-btn button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
.cure-section .cure-section-container .cure-section-image {
  width: 20%;
  justify-self: center;
}
.cure-section .cure-section-container .cure-section-image img {
  max-width: 100%;
  height: auto;
}
.cure-section .cure-section-container .services-container {
  padding: 0.3rem;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.0588235294);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1607843137), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 10px;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, 0.1607843137);
  background-image: url(../public/images/services-bg-2-mod.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 95%;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.cure-section .cure-section-container .services-container .service-item {
  position: relative;
  width: 24.4%;
  color: #cdaa56;
  background-color: rgba(3, 1, 1, 0.815);
  font-size: calc(1rem * 1.5);
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .cure-section .cure-section-container .services-container .service-item.service-item {
    width: 95%;
  }
  .cure-section .cure-section-container .services-container .service-item.service-item p {
    text-decoration: none;
  }
}
.cure-section .cure-section-container .services-container .service-item:hover {
  background-color: rgba(205, 170, 86, 0.8);
  color: white;
  cursor: default;
}
.cure-section .cure-section-container .services-container .service-item p {
  position: absolute;
  inset: 0;
  align-self: center;
  justify-self: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 20px;
  text-underline-position: right;
}
.cure-section .cure-section-container .proofs-container {
  padding: 4rem 2rem;
  backdrop-filter: brightness(0.5) blur(2px);
}
.cure-section .cure-section-container .proofs-container .proof-images-wrapper {
  display: flex;
  align-items: center;
  margin: 2.5rem 0;
  gap: 1rem;
}
.cure-section .cure-section-container .proofs-container .proof-images-wrapper .proof-image-wrap {
  width: 33%;
}
.cure-section .cure-section-container .proofs-container .proof-images-wrapper .proof-image-wrap img {
  width: 100%;
  transition: all 0.3s ease;
}
.cure-section .cure-section-container .proofs-container .proof-images-wrapper .proof-image-wrap img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.cure-section .cure-section-container .reviews-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
  gap: 1rem;
}
.cure-section .cure-section-container .reviews-wrap .stars span {
  display: inline-block;
  font-size: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease;
}
.cure-section .cure-section-container .reviews-wrap .stars span:hover {
  transform: scale(1.5);
  color: #cdaa56;
}
.cure-section .cure-section-container .reviews-wrap .reviews .review-item {
  display: none;
  padding-inline: 2rem;
  min-height: 125px;
}
.cure-section .cure-section-container .reviews-wrap .reviews .review-item p {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  max-width: 55ch;
  font-weight: 400;
}
.cure-section .cure-section-container .reviews-wrap .reviews .review-item.active-review {
  display: block;
}
.cure-section .cure-section-container .cure-section-cta {
  justify-self: center;
  width: 50%;
}
.cure-section .cure-section-container .cure-section-cta button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
.cure-section .cure-section-container .cure-section-cta button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
.cure-section .cure-section-container .cure-section-cta button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
.cure-section .cure-section-container .cure-section-cta button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
.cure-section .cure-section-cta {
  padding-bottom: 4rem;
}

.accent-underline {
  display: inline-block;
  width: 7ch;
  height: 1px;
  background-color: #cdaa56;
}

dialog {
  margin: auto;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
dialog::backdrop {
  background: rgba(5, 2, 2, 0.432);
}
dialog .gallery-modal-content {
  max-width: 600px;
}
dialog .gallery-modal-content .modal-x-button {
  position: absolute;
  top: -10px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 25%;
  font-size: 3rem;
  text-align: center;
  color: rgb(255, 255, 255);
  background: #cdaa56;
  cursor: pointer;
  transition: color 0.3s ease;
}
dialog .gallery-modal-content .modal-x-button:hover {
  color: rgba(2, 1, 1, 0.7);
}
dialog .gallery-modal-content img {
  width: 100%;
  height: auto;
}

.faq-section {
  background-image: url("../src/assets/backgrounds/virtical-background-svg.svg");
  padding: 2.5rem;
  text-align: center;
}
.faq-section .heading-wrap {
  margin-bottom: 1rem;
}
.faq-section .heading-wrap h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
}
.faq-section .faq-icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  margin: 2.5rem 0;
}
.faq-section .faq-icons-container .faq-icon {
  width: clamp(135px, 8vw, 150px);
}
.faq-section .faq-icons-container .faq-icon svg .accent-path {
  fill: #cdaa56;
}
.faq-section .faq-icons-container .faq-icon svg {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.faq-section .faq-icons-container .faq-icon p {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
}
.faq-section .accordion {
  direction: rtl;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.faq-section .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-section .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .accordion-header {
  background: transparent;
  border: none;
  width: 100%;
  padding: 24px 30px;
  text-align: right;
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.faq-section .accordion-header:hover {
  color: #cdaa56;
}
.faq-section .accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cdaa56, #000000);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
}
.faq-section .accordion-icon::before,
.faq-section .accordion-icon::after {
  content: "";
  position: absolute;
  background: white;
  transition: opacity 0.2s ease;
}
.faq-section .accordion-icon::before {
  width: 12px;
  height: 2px;
}
.faq-section .accordion-icon::after {
  width: 2px;
  height: 12px;
}
.faq-section .accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.faq-section .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(102, 126, 234, 0.02);
  will-change: grid-template-rows;
}
.faq-section .accordion-content > * {
  min-height: 0;
}
.faq-section .accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}
.faq-section .accordion-text {
  text-align: start;
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  padding: 0 30px 0 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}
.faq-section .accordion-text p {
  max-width: 75ch;
}
.faq-section .accordion-item.active .accordion-text {
  opacity: 1;
  transform: translateY(0);
  padding: 0 30px 30px 30px;
}
.faq-section {
  /* Pulse animation for active item */
}
.faq-section .accordion-item.active .accordion-header {
  color: #cdaa56;
}
.faq-section {
  /* Mobile responsive */
}
@media (max-width: 768px) {
  .faq-section .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .faq-section .accordion-header {
    padding: 20px 24px;
    font-size: 1rem;
  }
  .faq-section .accordion-text {
    padding: 24px 24px 24px 24px;
    font-size: 0.9rem;
  }
}
.faq-section {
  /* Enhanced visual effects */
}
.faq-section .accordion-item {
  transition: transform 0.15s ease;
}
.faq-section .accordion-item:hover {
  transform: translateX(2px);
}
.faq-section .accordion-item.active {
  transform: translateX(0);
  box-shadow: inset -4px 0 0 #cdaa56;
}
.faq-section {
  /* Mobile optimizations - reduce animations for better performance */
}
@media (max-width: 768px) {
  .faq-section .accordion-item {
    transition: none;
  }
  .faq-section .accordion-item:hover {
    transform: none;
  }
  .faq-section .accordion-content {
    transition: grid-template-rows 0.25s ease;
  }
  .faq-section .accordion-text {
    display: none;
    transition: opacity 0.15s ease 0.05s;
    transform: none;
    padding: 0 30px 0 0;
  }
  .faq-section .accordion-item.active .accordion-text {
    transform: none;
    display: block;
  }
  .faq-section .accordion-header {
    transition: color 0.15s ease;
  }
  .faq-section .accordion-icon {
    transition: transform 0.2s ease;
  }
  .faq-section .accordion-item.active .accordion-header {
    box-shadow: none;
  }
}

footer {
  background: url("../src/assets/backgrounds/virtical-background-dark.svg");
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  padding-top: 2.5rem;
  color: white;
  text-align: right;
  max-width: 1400px;
  margin: 0 auto;
}
footer .footer-form-subsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: 2rem;
  padding: 0.3rem;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.0588235294);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1607843137), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 10px;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, 0.1607843137);
  padding: 2.5rem;
}
footer .footer-form-subsection h3 {
  text-align: center;
  color: #cdaa56;
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
footer .footer-form-subsection form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 1rem;
}
footer .footer-form-subsection form input {
  background: rgb(3, 2, 2);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  outline: none;
  color: white;
  text-align: right;
  padding: 1rem;
  font-size: calc(1 * 1rem);
}
footer .footer-form-subsection form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-form-subsection form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-form-subsection form input:focus {
  border: 1px solid #cdaa56;
}
footer .footer-form-subsection form button {
  display: block;
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
footer .footer-form-subsection form button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
footer .footer-form-subsection form button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
footer .footer-form-subsection form button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
footer .footer-form-subsection form button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 630px;
}
footer .footer-form-subsection .form-terms {
  margin-top: 1rem;
  text-align: center;
}
footer h4 {
  font-size: calc(1rem * 1.5);
  color: #cdaa56;
}
footer a {
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  color: #cdaa56;
}
footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-around;
}
footer .footer-container h4 {
  margin-bottom: 1rem;
}
footer .footer-container .footer-contact {
  padding: 1rem 0;
}
footer .footer-container .footer-contact .footer-map {
  margin-top: 1rem;
}
footer .footer-container .footer-contact .footer-map .map {
  width: 300px;
  height: 150px;
  border: 0;
  border-radius: 10px;
}
footer .footer-container .footer-nav {
  padding: 1rem 0;
}
footer .footer-container .footer-nav ul {
  list-style-type: none;
}
footer .footer-container .footer-disclaimers {
  padding: 1rem 0;
}
footer .footer-container .footer-disclaimers ul {
  list-style-type: none;
}
footer .footer-bottom {
  font-size: calc(1rem / 1.5);
  text-align: center;
  padding: 1rem 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.fixed-contact-button {
  display: none;
}
.fixed-contact-button.show {
  display: block;
}
.fixed-contact-button {
  position: fixed;
  width: clamp(50px, 5vw, 60px);
  z-index: 999;
  bottom: 50px;
  right: 20px;
  padding: 0.3rem;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.0588235294);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1607843137), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 10px;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, 0.1607843137);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  animation: fadeIn 0.3s ease forwards;
  padding: 8px;
}
.fixed-contact-button a svg {
  width: 100%;
  height: auto;
  fill: #fff;
  transition: all 0.3s ease;
}
.fixed-contact-button a svg:hover {
  fill: #cdaa56;
}

.fixed-contact-button-sos {
  display: none;
}
.fixed-contact-button-sos.show {
  display: block;
}
.fixed-contact-button-sos {
  position: fixed;
  width: clamp(50px, 5vw, 60px);
  z-index: 999;
  bottom: 120px;
  right: 20px;
  padding: 0.3rem;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.0588235294);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1607843137), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 10px;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, 0.1607843137);
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50px;
  animation: fadeIn 0.3s ease forwards;
  padding: 8px;
}
.fixed-contact-button-sos:hover {
  background: rgb(255, 0, 0);
}
.fixed-contact-button-sos:hover svg {
  fill: #fff;
  transform: scale(1.1);
}
.fixed-contact-button-sos a svg {
  width: 100%;
  height: auto;
  fill: #fff;
  transition: all 0.3s ease;
}
.fixed-contact-button-sos ::after {
  content: "SOS";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #fff;
  font-weight: bold;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1d1f21;
  padding: 0.8rem 2rem;
  direction: rtl;
  transform: translateY(100%);
  animation: cookieSlideUp 0.4s ease forwards;
}
.cookie-banner.cookie-banner--hiding {
  animation: cookieSlideDown 0.3s ease forwards;
}

.cookie-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.cookie-banner__text {
  color: white;
  font-family: "Open-Sans", sans-serif;
  font-size: 0.85rem;
  margin: 0;
}
.cookie-banner__text a {
  color: #cdaa56;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  filter: brightness(1.2);
}

.cookie-banner__btn {
  background: #cdaa56;
  color: #1d1f21;
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  padding: 0.35em 1.2em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.cookie-banner__btn:hover {
  opacity: 0.85;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes cookieSlideDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@media (max-width: 768px) {
  .cookie-banner {
    bottom: auto;
    top: 0;
    padding: 0.6rem 1rem;
  }
  .cookie-banner__inner {
    gap: 0.8rem;
  }
  .cookie-banner__text {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .cookie-banner__btn {
    font-size: 0.75rem;
    padding: 0.3em 0.8em;
  }
  @keyframes cookieSlideUp {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes cookieSlideDown {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }
}
.nav-other-pages {
  background-color: rgba(0, 0, 0, 0.95);
}

.about-page {
  padding-top: 6rem;
  background-image: url("../src/assets/backgrounds/virtical-background-svg.svg");
}
.about-page .heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-page .heading-wrap h1,
.about-page .heading-wrap h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}
.about-page .heading-wrap h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
}
.about-page .heading-wrap .accent-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #cdaa56;
  margin: 0 auto;
  border-radius: 2px;
}

.about-nimrod-section {
  padding: 4rem 2.5rem;
}
.about-nimrod-section .about-nimrod-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-nimrod-section .about-nimrod-content {
  margin: 0 auto;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text {
  direction: rtl;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text p {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  color: #1d1f21;
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
  max-width: 70ch;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text h3 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #1d1f21;
  margin: 2.5rem 0 1rem 0;
  border-bottom: 2px solid #cdaa56;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text ul {
  margin: 1rem 0 2.5rem 2.5rem;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text ul li {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  color: #1d1f21;
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 20px;
  list-style: none;
}
.about-nimrod-section .about-nimrod-content .about-nimrod-text ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #cdaa56;
  font-weight: bold;
  font-size: 1.2em;
}
.about-nimrod-section .about-nimrod-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-nimrod-section .about-nimrod-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-nimrod-section .about-nimrod-image img:hover {
  transform: scale(1.02);
}

.important-things-section {
  padding: 4rem 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-image: url("../src/assets/backgrounds/virtical-background-dark.svg");
}
.important-things-section h2 {
  color: white;
}
.important-things-section .important-things-container {
  max-width: 1400px;
  margin: 0 auto;
}
.important-things-section .important-things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
  justify-self: center;
}
.important-things-section .important-thing-item {
  background: white;
  padding: 4rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 70ch;
}
.important-things-section .important-thing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cdaa56 0%, #faca5a 100%);
}
.important-things-section .important-thing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.important-things-section .important-thing-item .important-thing-icon {
  margin-bottom: 1rem;
}
.important-things-section .important-thing-item .important-thing-icon svg {
  color: #cdaa56;
  width: 100%;
  max-width: 150px;
  height: auto;
}
.important-things-section .important-thing-item h3 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #1d1f21;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.important-things-section .important-thing-item p {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  color: #1d1f21;
  line-height: 1.7;
  text-align: justify;
}
.important-things-section .important-things-cta {
  text-align: center;
}
.important-things-section .important-things-cta button {
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
.important-things-section .important-things-cta button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
.important-things-section .important-things-cta button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
.important-things-section .important-things-cta button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
.important-things-section .important-things-cta button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 400px;
}
.important-things-section .important-things-cta button a {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0.5em;
}

@media screen and (max-width: 1065px) {
  .about-page {
    padding-top: 5rem;
  }
  .about-page .heading-wrap {
    margin-bottom: 2.5rem;
  }
  .about-nimrod-section {
    padding: 2.5rem 1rem;
  }
  .about-nimrod-section .about-nimrod-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-nimrod-section .about-nimrod-content {
    order: 2;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text p {
    text-align: center;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text ul {
    text-align: right;
    margin-right: 1rem;
  }
  .about-nimrod-section .about-nimrod-image {
    order: 1;
  }
  .about-nimrod-section .about-nimrod-image img {
    max-width: 300px;
  }
  .important-things-section {
    padding: 2.5rem 1rem;
  }
  .important-things-section .important-things-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .important-things-section .important-thing-item {
    padding: 2.5rem 1rem;
  }
  .important-things-section .important-thing-item h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
  }
  .important-things-section .important-thing-item p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .about-page {
    padding-top: 5.5rem;
  }
  .about-page .heading-wrap {
    margin-bottom: 1rem;
  }
  .about-page .heading-wrap h1,
  .about-page .heading-wrap h2 {
    margin-bottom: 0.5rem;
  }
  .about-page .heading-wrap .accent-underline {
    width: 60px;
    height: 3px;
  }
  .about-nimrod-section {
    padding: 1rem 0.5rem;
  }
  .about-nimrod-section .about-nimrod-container {
    gap: 1rem;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text h3 {
    margin: 1rem 0 0.5rem 0;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text ul {
    margin: 0.5rem 0 1rem 1rem;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text ul li {
    font-size: 0.9rem;
  }
  .about-nimrod-section .about-nimrod-image img {
    max-width: 250px;
    border-radius: 10px;
  }
  .important-things-section {
    padding: 1rem 0.5rem;
    padding-top: 2.5rem;
  }
  .important-things-section .important-things-grid {
    gap: 1rem;
  }
  .important-things-section .important-thing-item {
    padding: 1rem;
    border-radius: 10px;
  }
  .important-things-section .important-thing-item .important-thing-icon {
    margin-bottom: 1rem;
  }
  .important-things-section .important-thing-item .important-thing-icon svg {
    max-width: 100px;
  }
  .important-things-section .important-thing-item h3 {
    margin-bottom: 0.5rem;
  }
  .important-things-section .important-thing-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .important-things-section .important-things-cta button {
    max-width: 300px;
  }
}
@media screen and (max-width: 325px) {
  .about-nimrod-section .about-nimrod-content .about-nimrod-text p {
    font-size: 0.85rem;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text h3 {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .about-nimrod-section .about-nimrod-content .about-nimrod-text ul li {
    font-size: 0.85rem;
  }
  .about-nimrod-section .about-nimrod-image img {
    max-width: 200px;
  }
  .important-things-section .important-thing-item .important-thing-icon svg {
    max-width: 80px;
  }
  .important-things-section .important-thing-item h3 {
    font-size: 0.9rem;
  }
  .important-things-section .important-thing-item p {
    font-size: 0.8rem;
  }
  .important-things-section .important-things-cta button {
    max-width: 280px;
  }
}
.success-page {
  padding-top: 6rem;
  background-image: url("../src/assets/backgrounds/virtical-background-svg.svg");
}
.success-page .heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.success-page .heading-wrap h1 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1;
  letter-spacing: -2px;
  color: #1d1f21;
  margin-bottom: 1rem;
}
.success-page .heading-wrap .accent-underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: #cdaa56;
  margin: 0 auto;
  border-radius: 2px;
}
.success-page .success-section-cta {
  text-align: center;
  padding-bottom: 2.5rem;
}
.success-page .success-section-cta button {
  background: #cdaa56;
  background: linear-gradient(90deg, rgb(205, 170, 86) 0%, rgb(250, 202, 90) 50%, rgb(255, 219, 135) 100%);
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw + 1rem, 1rem * 1.5);
  letter-spacing: 1px;
  color: black;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
}
.success-page .success-section-cta button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, white);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
}
.success-page .success-section-cta button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #cdaa56;
}
.success-page .success-section-cta button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(500%);
}
.success-page .success-section-cta button {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.success-stories-section {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.success-stories-section .success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .success-stories-section .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.success-stories-section .success-story-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 3px solid transparent;
}
.success-stories-section .success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(205, 170, 86, 0.3);
}
.success-stories-section .success-story-card .success-story-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.success-stories-section .success-story-card .success-story-header h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
  color: #1d1f21;
  margin-bottom: 1rem;
}
.success-stories-section .success-story-card .success-story-header h3 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 0;
}
.success-stories-section .success-story-card .success-story-proof {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 300px;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
}
.success-stories-section .success-story-card .success-story-proof img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 4px;
}
.success-stories-section .success-story-card .success-story-proof img:hover {
  transform: scale(1.05);
}
.success-stories-section .success-story-card .enlarge-text {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  text-align: center;
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

@media screen and (max-width: 325px) {
  .success-stories-section {
    padding: 1rem;
  }
  .success-stories-section .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .success-stories-section .success-story-card {
    padding: 1rem;
  }
  .success-stories-section .success-story-card .success-story-proof {
    min-height: 250px;
  }
  .success-stories-section .success-story-card .success-story-header {
    margin-bottom: 1rem;
  }
  .success-stories-section .success-story-card .success-story-header h3 {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 325px) and (max-width: 1065px) {
  .success-stories-section .success-stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }
}
@media screen and (min-width: 1065px) {
  .success-stories-section .success-stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.services-page {
  padding-top: 4rem;
  background-image: url("../src/assets/backgrounds/virtical-background-svg.svg");
}
.services-page .services-intro-section {
  padding: 4rem 2rem;
  text-align: center;
}
.services-page .services-intro-section .heading-wrap h1 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1;
  letter-spacing: -2px;
  color: #1d1f21;
  margin-bottom: 1rem;
}
.services-page .services-intro-section .heading-wrap .accent-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #cdaa56;
  margin: 1rem auto;
  border-radius: 2px;
}
.services-page .services-intro-section .services-intro-content {
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-page .services-intro-section .services-intro-content p {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  color: #1d1f21;
  margin-bottom: 2.5rem;
  text-align: right;
}
.services-page .services-intro-section .services-intro-content p:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .services-page .services-intro-section .services-intro-content p {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: calc(1 * 1rem);
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .services-page .services-intro-section {
    padding: 2.5rem 1rem;
  }
}
.services-page .services-categories-section {
  padding: 2.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.services-page .services-categories-section .service-category {
  background: white;
  padding: 2.5rem;
  align-content: center;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(29, 31, 33, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}
.services-page .services-categories-section .service-category:hover {
  box-shadow: 0 12px 40px rgba(29, 31, 33, 0.15);
  border: 3px solid rgba(205, 170, 86, 0.3);
}
.services-page .services-categories-section .service-category .heading-wrap {
  text-align: center;
}
.services-page .services-categories-section .service-category .heading-wrap h2 {
  font-family: "Open-Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
  line-height: 1.2;
  letter-spacing: -1px;
  color: #1d1f21;
}
@media (max-width: 768px) {
  .services-page .services-categories-section .service-category .heading-wrap h2 {
    font-family: "Open-Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2vw + 1rem, 1rem * 1.5 * 1.5);
    line-height: 1.2;
    letter-spacing: -1px;
  }
}
.services-page .services-categories-section .service-category .heading-wrap .accent-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: #cdaa56;
  margin: 1rem auto;
  border-radius: 2px;
}
.services-page .services-categories-section .service-category .service-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.services-page .services-categories-section .service-category .service-details-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(29, 31, 33, 0.1);
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  color: #1d1f21;
  position: relative;
  padding-right: 2.5rem;
}
.services-page .services-categories-section .service-category .service-details-list li:before {
  content: "◀";
  position: absolute;
  right: 0;
  color: #cdaa56;
  font-weight: bold;
}
.services-page .services-categories-section .service-category .service-details-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.services-page .services-categories-section .service-category .service-details-list li strong {
  color: #1d1f21;
  font-weight: 600;
}
@media (max-width: 768px) {
  .services-page .services-categories-section .service-category .service-details-list li {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: calc(1 * 1rem);
    line-height: 1.5;
    padding: 0.5rem 0;
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .services-page .services-categories-section .service-category {
    padding: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .services-page .services-categories-section {
    padding: 1rem 1rem 2.5rem;
  }
}
@media (max-width: 325px) {
  .services-page .services-page .services-intro-section {
    padding: 1rem 0.5rem;
  }
  .services-page .services-page .services-categories-section {
    padding: 0.5rem 0.5rem 1rem;
  }
  .services-page .services-page .services-categories-section .service-category {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .services-page .services-page .services-categories-section .service-category .heading-wrap h2 {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1vw + 1rem, 1rem * 1.5);
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .services-page .services-page .services-categories-section .service-category .service-details-list li {
    font-family: "Open-Sans", sans-serif;
    font-weight: 400;
    font-size: calc(1 * 1rem);
    line-height: 1.5;
    padding: 0.5rem 0;
    padding-right: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */