:root {
  --accent: #cfa550;
  --gray: #231f20;
  --light-gray: #707070;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

.bg-accent {
  background: var(--accent);
}

.bg-gray {
  background: var(--gray);
}

.text-accent {
  color: var(--accent);
}

.text-gray {
  color: var(--gray);
}

/* .text-light-gray {
  color: var(--light-gray);
} */

.navbar {
  transition: padding 0.2s ease-in-out;
}

.navbar a {
  color: #282828;
  transition: color 0.2s ease-in-out;
}

.navbar a:hover {
  color: var(--accent);
}

input.error {
  border-color: #dc2626 !important;
}

.error-message {
  color: #dc2626;
  font-size: 13px;
  /* margin-top: 0.25rem; */
  /* margin-bottom: 1rem; */
  display: none;
}

.error-message.visible {
  display: block;
}

.spinner {
  visibility: hidden;
}

.spinner.visible {
  visibility: initial;
}

.order-error {
  color: #dc2626;
  font-size: 16px;
  font-weight: 500;
  visibility: hidden;
}

.order-error.visible {
  visibility: initial;
}

.spinner-path {
  transform-origin: center;
  animation: spinner-anim 0.75s infinite linear;
}
@keyframes spinner-anim {
  100% {
    transform: rotate(360deg);
  }
}

.bg-gradient {
  background: #cfa550;
  background: linear-gradient(
    135deg,
    rgba(207, 165, 80, 1) 0%,
    rgba(35, 31, 32, 1) 100%
  );
}

.bg-gradient2 {
  background: #cfa550;
  background: linear-gradient(
    180deg,
    rgba(207, 165, 80, 1) 0%,
    rgba(35, 31, 32, 1) 100%
  );
}

.bg-gradient3 {
  background: #cfa550;
  background: linear-gradient(
    62deg,
    rgba(207, 165, 80, 1) 0%,
    rgba(35, 31, 32, 1) 100%
  );
}

.bg-gradient4 {
  background: #cfa550;
  background: linear-gradient(
    197deg,
    rgba(207, 165, 80, 1) 0%,
    rgba(35, 31, 32, 1) 100%
  );
}

/* .bg-gradient { */
/*   background: rgb(103, 156, 243); */
/*   background: linear-gradient( */
/*     135deg, */
/*     rgba(103, 156, 243, 1) 0%, */
/*     rgba(151, 86, 250, 1) 70% */
/*   ); */
/* } */
/**/
/* .bg-gradient2 { */
/*   background: rgb(103, 156, 243); */
/*   background: linear-gradient( */
/*     180deg, */
/*     rgba(103, 156, 243, 1) 0%, */
/*     rgba(151, 86, 250, 1) 70% */
/*   ); */
/* } */
/**/
/* .bg-gradient3 { */
/*   background: rgb(103, 156, 243); */
/*   background: linear-gradient( */
/*     62deg, */
/*     rgba(103, 156, 243, 1) 0%, */
/*     rgba(151, 86, 250, 1) 70% */
/*   ); */
/* } */
/**/
/* .bg-gradient4 { */
/*   background: rgb(103, 156, 243); */
/*   background: linear-gradient( */
/*     197deg, */
/*     rgba(103, 156, 243, 1) 0%, */
/*     rgba(151, 86, 250, 1) 70% */
/*   ); */
/* } */

.owl-dark-pagination .owl-pagination .active span {
  background-color: var(--accent) !important;
  border: 2px solid var(--accent) !important;
}

.owl-dark-pagination .owl-pagination .owl-page span {
  border: 2px solid var(--accent) !important;
}

.link-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .link-container {
    flex-wrap: wrap; /* Allow items to wrap into multiple lines */
  }
}

@media screen and (max-width: 767px) {
  .owl-pagination-bottom .owl-pagination {
    bottom: -30px;
  }
}

.navbar img {
  max-height: 55px !important;
}

.mobile-controls {
  display: flex;
  align-items: center;
  float: right;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 50px;
  margin-left: 15px;
}

.current-lang {
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  justify-content: space-between;
}

.current-lang img {
  width: 24px;
  height: 24px;
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 16px;
  color: #555;
  line-height: 1;
  transition: transform 0.2s ease;
}

.language-switcher.active .dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  width: 100%; /* match width of button */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.lang-option {
  padding: 8px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.lang-option:hover {
  background-color: #cfa550;
}

.lang-dropdown .lang-option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lang-option img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 991px) {
  .mobile-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .language-switcher {
    order: 1;
    margin-right: 10px;
  }

  .navbar-toggle {
    order: 2;
    margin: 0;
  }
}

._card {
  /* background-color: #fff; */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 20px;
  margin: 0;
  /* height: 600px; */
  border-radius: 8px;
  height: 100%;
  transition: box-shadow 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.card-circle {
  position: absolute;
  top: -22px;
  right: -15px;
  width: 70px;
  height: 70px;
  background-color: var(--gray);
  border-radius: 50%;
}

.card-number {
  text-align: right;
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

._card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

._card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}

._card-header h3 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: bold;
  margin: 0;
  width: 100%;
}

._card-header .fa {
  transition: transform 0.2s ease-in-out;
}

._card:hover ._card-header .fa {
  transform: rotate(15deg);
}

._anchor {
  height: 0;
  visibility: hidden;
  scroll-margin-top: 73px;
}

.why-us-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-btn {
  font-size: 18px !important;
  padding: 12px 25px !important;
}

/* .cta_btn:hover {
  background-color: var(--accent);
} */
