body {
  font-family: "JUST Sans";
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.top-bar {
  background-color: #1c1c1c;
  border-bottom: 1px solid #2a2a2a;
  font-size: 1rem;
  padding: 0.5rem 0;
  color: #e0e0e0;
}
.top-bar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .top-bar__container {
    gap: 0.5rem;
  }
}
.top-bar__info {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.top-bar__info::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .top-bar__info {
    gap: 0.8rem;
    flex: 1;
  }
}
@media (max-width: 576px) {
  .top-bar__info {
    gap: 0.5rem;
  }
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.top-bar__item i {
  color: #d4af37;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.top-bar__item span {
  white-space: nowrap;
}
@media (max-width: 992px) {
  .top-bar__item span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) {
  .top-bar__item span {
    max-width: 120px;
  }
}
@media (max-width: 576px) {
  .top-bar__item span {
    max-width: 80px;
  }
}
@media (max-width: 480px) {
  .top-bar__item:nth-child(3) {
    display: none;
  }
}
.top-bar__social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar__social {
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .top-bar__social {
    gap: 0.3rem;
  }
}
.top-bar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.top-bar__social-link:hover {
  transform: translateY(-2px);
}
.top-bar__social-link .social-icon {
  width: 16px;
  height: 16px;
  transition: opacity 0.2s ease;
}
@media (max-width: 576px) {
  .top-bar__social-link .social-icon {
    width: 14px;
    height: 14px;
  }
}
.top-bar__social-link .social-icon:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .top-bar__social-link:nth-child(4), .top-bar__social-link:nth-child(5) {
    display: none;
  }
}

.top-bar ::-moz-selection {
  background-color: #d4af37;
  color: #000;
}

.top-bar ::selection {
  background-color: #d4af37;
  color: #000;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(222, 184, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.scroll-to-top:hover {
  background-color: rgb(222, 184, 135);
  transform: translateY(0) scale(1.05);
}
.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top__icon {
  height: 20px;
  width: auto;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
.footer {
  background-color: #3c3c4d;
  padding: 3rem 0 2rem;
  color: #fff;
  position: relative;
}
.footer__container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
}
.footer__links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
}
.footer__links li {
  margin: 0;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer__links a:hover {
  color: #fff;
}
.footer__contact {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__contact {
    justify-content: center;
  }
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact a:hover {
  color: #fff;
}
.footer__divider {
  color: rgba(255, 255, 255, 0.3);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__copyright p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}
.footer__copyright a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__copyright a:hover {
  color: #fff;
}
.footer__copyright .heart {
  color: #ff6b6b;
  margin: 0 0.2rem;
}
.footer__social {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .footer__social {
    gap: 1rem;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #deb887;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .footer__social-link {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.footer__social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8585a9;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 1;
}
.footer__social-link:hover {
  border-radius: 50%;
}
.footer__social-link:hover .footer__social-icon {
  filter: brightness(1.2);
}
.footer__social-link:hover::before {
  transform: scale(1);
}
.footer__social-icon {
  height: 20px;
  width: auto;
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
}

.gallery-title-section {
  position: relative;
  height: 300px;
  background-image: url("/src/images/backgrounds/gallery.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.gallery-title-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-title-container {
  position: relative;
  z-index: 2;
}

.gallery-title {
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Gritlen", sans-serif;
}

/* Gallery Grid Styles */
.gallery-section {
  padding: 0 0 100px;
  background-color: #fafafa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 370px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Removed transform transition */
}

.glare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%; /* Narrower width for subtlety */
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 2.5s ease, opacity 0.8s ease; /* Slower animation */
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .glare {
  left: 150%; /* Move further to ensure it completes the animation */
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Removed zoom effect on hover */
.overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.gallery-item:hover .overlay h3 {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-title {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-title {
    font-size: 40px;
  }
  .gallery-title-section {
    height: 200px;
  }
}
.header {
  background-color: #fff;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow 0.4s ease;
  position: sticky;
}
.header.header--scrolled {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  animation: slideDown 0.5s forwards;
}
.header.header--sticky {
  transform: translateY(0);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  transition: padding 0.3s ease;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  position: relative;
  z-index: 10;
}
.header__logo-icon {
  width: 4.5rem; /* Fixed from 1rem to a more typical size */
  height: 4.5rem;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.header__logo-img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}
.header__logo-text {
  font-size: 2.8rem;
  font-family: "Rossa";
  color: #333;
  position: relative;
}
.header__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 3.2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 5;
}
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 2.4rem;
  width: 3rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.header__mobile-toggle span {
  width: 100%;
  height: 0.3rem;
  background-color: #333;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.header__mobile-toggle.active span:first-child {
  transform: rotate(45deg);
}
.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.active span:last-child {
  transform: rotate(-45deg);
}
.header__nav-container {
  transition: all 0.4s ease;
}
.header__nav {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.header__nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.4s ease;
  position: relative;
  padding: 0.8rem 0;
  display: inline-block;
}
.header__nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: #deb887;
  transition: width 0.4s ease;
}
.header__nav-link:hover {
  color: #deb887;
}
.header__nav-link:hover::before {
  width: 100%;
}
.header__nav-arrow {
  display: none;
  margin-left: 0.5rem;
  font-size: 2.4rem;
  line-height: 1;
  color: #777;
}
.header__social {
  display: none;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.header__social-link {
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease;
}
.header__social-link:hover {
  color: #deb887;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__call {
  display: flex;
  flex-direction: column;
  text-align: right;
  transition: transform 0.3s ease;
}
.header__call-text {
  font-size: 1.4rem;
  color: #777;
}
.header__call-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}
.header__search {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: all 0.4s ease;
  position: relative;
}
.header__search:hover {
  color: #deb887;
}
.header__book {
  position: relative;
  background-color: #deb887;
  color: white;
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  overflow: hidden;
  z-index: 1;
  border-radius: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header__book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: all 0.5s ease;
  z-index: -1;
}
.header__book:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(222, 184, 135, 0.3);
}
.header__book:hover::before {
  left: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .header__container {
    padding: 1.2rem 2rem;
  }
  .header__nav {
    gap: 2rem;
  }
  .header__logo-text {
    font-size: 2.6rem;
  }
  .header__nav-link {
    font-size: 1.3rem;
  }
  .header__call {
    display: none;
  }
  .header__book {
    padding: 1.2rem 2rem;
  }
}
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  .header__container {
    padding: 1rem 1.5rem;
  }
  .header__mobile-toggle {
    display: flex;
  }
  .header__close {
    display: block;
  }
  .header__logo-text {
    font-size: 2.4rem;
  }
  .header__nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 32rem;
    height: 100vh;
    background-color: #222;
    padding: 8rem 3rem 3rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
  }
  .header__nav-container.active {
    right: 0;
  }
  .header__nav {
    flex-direction: column;
    gap: 0;
  }
  .header__nav-item {
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding: 0;
    justify-content: space-between;
  }
  .header__nav-link {
    font-size: 1.6rem;
    display: block;
    padding: 1.8rem 0;
    color: #fff;
    width: 100%;
  }
  .header__nav-link::before {
    display: block;
    bottom: 0.5rem;
    background-color: #deb887;
    height: 0.2rem;
  }
  .header__nav-link:hover {
    color: #deb887;
  }
  .header__nav-link:hover::before {
    width: 30%;
  }
  .header__nav-arrow {
    display: block;
    color: #fff;
    font-size: 2.4rem;
  }
  .header__social {
    display: flex;
  }
  .header__right {
    gap: 1.5rem;
  }
  .header__book {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__logo-icon {
    width: 4rem;
    height: 4rem;
  }
  .header__logo-text {
    font-size: 2.2rem;
  }
  .header__nav-link {
    font-size: 1.5rem;
    padding: 1.6rem 0;
  }
  .header__search {
    font-size: 1.8rem;
  }
  .header__social {
    gap: 1.5rem;
  }
  .header__social-link {
    font-size: 1.8rem;
  }
}
@media (max-width: 360px) {
  .header__logo-icon {
    width: 3.6rem;
    height: 3.6rem;
  }
  .header__logo-text {
    font-size: 2rem;
  }
}
body {
  overflow: hidden; /* Prevent scrolling during load */
}

body.loaded {
  overflow: visible; /* Enable scrolling after load */
}

/* Hide all page content initially */
.page-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded .page-content {
  opacity: 1;
}

/* Loader styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3c4d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader__content {
  text-align: center;
}
.loader__text {
  margin-bottom: 2rem;
}
.loader__text span {
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  font-family: "Rossa";
  letter-spacing: 0.1rem;
  animation: textFade 2s infinite;
}
.loader__text span:nth-child(1) {
  animation-delay: 0.15s;
}
.loader__text span:nth-child(2) {
  animation-delay: 0.3s;
}
.loader__text span:nth-child(3) {
  animation-delay: 0.45s;
}
.loader__text span:nth-child(4) {
  animation-delay: 0.6s;
}
.loader__text span:nth-child(5) {
  animation-delay: 0.75s;
}
.loader__text span:nth-child(6) {
  animation-delay: 0.9s;
}
.loader__text span:nth-child(7) {
  animation-delay: 1.05s;
}
.loader__text span:nth-child(8) {
  animation-delay: 1.2s;
}
.loader__progress {
  width: 20rem;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}
.loader__progress-bar {
  height: 100%;
  width: 0%;
  background-color: #deb887;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}
.stats-counter {
  padding: 70px 0;
  background-color: #f9f7f4;
}
.stats-counter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.stats-counter .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .stats-counter .stats-grid {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .stats-counter .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .stats-counter .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto;
  }
}
.stats-counter .stat-item {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stats-counter .stat-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.stats-counter .stat-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.stats-counter .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1100px) {
  .stats-counter .stat-item {
    height: 260px;
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  .stats-counter .stat-item {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .stats-counter .stat-item {
    height: 220px;
  }
}
@media (max-width: 576px) {
  .stats-counter .stat-item {
    height: 200px;
    padding: 20px 15px;
  }
}
.stats-counter .stat-item.silver-bg {
  background-color: rgba(189, 189, 189, 0.9);
  color: #ffffff;
}
.stats-counter .stat-item.gold-bg {
  background-color: rgba(222, 184, 135, 0.9);
  color: #ffffff;
}
.stats-counter .stat-icon {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}
.stats-counter .stat-icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
@media (max-width: 991px) {
  .stats-counter .stat-icon img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .stats-counter .stat-icon img {
    width: 40px;
    height: 40px;
  }
}
.stats-counter .stat-number {
  font-size: 58px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
}
@media (max-width: 1100px) {
  .stats-counter .stat-number {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .stats-counter .stat-number {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .stats-counter .stat-number {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .stats-counter .stat-number {
    font-size: 42px;
  }
}
.stats-counter .stat-number:after {
  content: "";
}
.stat-item:last-child .stats-counter .stat-number:after {
  content: "+";
}
.stats-counter .stat-label {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
}
@media (max-width: 991px) {
  .stats-counter .stat-label {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .stats-counter .stat-label {
    font-size: 1.4rem;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-counter .stat-item:hover::before,
.stats-counter .stat-item:hover::after {
  width: 25px;
  height: 25px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.services-highlight {
  background-color: #3c3c4d;
  color: #fff;
  padding: 0 0 8rem;
}
.services-highlight .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-highlight .services-banner {
  display: flex;
  margin-bottom: 8rem;
}
.services-highlight .services-banner .banner-image {
  flex: 1;
  overflow: hidden;
}
.services-highlight .services-banner .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.services-highlight .services-banner .banner-image img:hover {
  transform: scale(1.05);
}
.services-highlight .services-banner .banner-content {
  flex: 1;
  background-color: #3c3c4d;
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-highlight .services-banner .banner-content .banner-subtitle {
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  margin-bottom: 2.5rem;
  color: #deb887;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.services-highlight .services-banner .banner-content .banner-subtitle::before {
  content: "";
  width: 7rem;
  height: 1px;
  background-color: #deb887;
  margin-right: 1.5rem;
  display: inline-block;
}
.services-highlight .services-banner .banner-content .banner-title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.services-highlight .services-banner .banner-content .banner-description {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 90%;
  font-weight: 300;
}
.services-highlight .services-banner .banner-content .banner-cta {
  display: inline-block;
  background-color: transparent;
  color: #deb887;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 1.2rem 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  align-self: flex-start;
}
.services-highlight .services-banner .banner-content .banner-cta::after {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #deb887;
  transition: all 0.3s ease;
}
.services-highlight .services-banner .banner-content .banner-cta:hover {
  color: rgba(222, 184, 135, 0.8);
}
.services-highlight .services-banner .banner-content .banner-cta:hover::after {
  background-color: rgba(222, 184, 135, 0.8);
}
.services-highlight .services-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.services-highlight .services-features .feature-item {
  position: relative;
  transition: transform 0.3s ease;
}
.services-highlight .services-features .feature-item:hover {
  transform: translateY(-0.5rem);
}
.services-highlight .services-features .feature-item .feature-icon {
  height: 6rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}
.services-highlight .services-features .feature-item .feature-icon img {
  height: 100%;
  filter: brightness(0) invert(0.9) sepia(0.3) saturate(2) hue-rotate(330deg);
  transition: transform 0.3s ease;
}
.services-highlight .services-features .feature-item .feature-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #deb887;
}
.services-highlight .services-features .feature-item .feature-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.services-highlight .services-features .feature-item:hover .feature-icon img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .services-highlight .services-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 3rem;
  }
}
@media (max-width: 768px) {
  .services-highlight {
    padding-bottom: 6rem;
  }
  .services-highlight .services-banner {
    flex-direction: column;
    margin-bottom: 6rem;
  }
  .services-highlight .services-banner .banner-content {
    padding: 5rem 3rem;
    position: relative;
  }
  .services-highlight .services-banner .banner-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5rem;
    bottom: 5rem;
    width: 0.4rem;
    background-color: #deb887;
  }
  .services-highlight .services-banner .banner-content .banner-title {
    font-size: 3.4rem;
  }
  .services-highlight .services-banner .banner-content .banner-description {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .services-highlight .services-banner .banner-content {
    padding: 4rem 2.5rem;
  }
  .services-highlight .services-banner .banner-content .banner-title {
    font-size: 3rem;
  }
  .services-highlight .services-banner .banner-content .banner-subtitle {
    font-size: 1.3rem;
  }
  .services-highlight .services-banner .banner-content .banner-description {
    font-size: 1.5rem;
  }
  .services-highlight .services-features {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about-section {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
}
@media (max-width: 1200px) {
  .about-section {
    padding-top: 10rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding-top: 8rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding-top: 6rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1240px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding-bottom: 100px;
}
@media (max-width: 1100px) {
  .about-wrapper {
    gap: 40px;
    padding-bottom: 80px;
  }
}
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .about-wrapper {
    gap: 30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .about-wrapper {
    padding-bottom: 50px;
  }
}

.about-images {
  flex: 1;
  display: flex;
  gap: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (max-width: 1100px) {
  .about-images {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .about-images {
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .about-images {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.about-images.appear {
  opacity: 1;
  transform: translateY(0);
}
.about-images .image-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.about-images .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.about-images .image-container img:hover {
  transform: scale(1.05);
}
.about-images .primary-image {
  width: 290px;
  height: 574px;
}
@media (max-width: 1100px) {
  .about-images .primary-image {
    width: 260px;
    height: 520px;
  }
}
@media (max-width: 992px) {
  .about-images .primary-image {
    width: 240px;
    height: 480px;
  }
}
@media (max-width: 768px) {
  .about-images .primary-image {
    width: 220px;
    height: 440px;
  }
}
@media (max-width: 576px) {
  .about-images .primary-image {
    width: 80%;
    max-width: 280px;
    height: 400px;
  }
}
@media (max-width: 400px) {
  .about-images .primary-image {
    width: 100%;
    height: 380px;
  }
}
.about-images .primary-image::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 40%;
  border: 2px solid #dbc8ac;
  z-index: -1;
}
@media (max-width: 768px) {
  .about-images .primary-image::before {
    bottom: -15px;
    left: -15px;
    width: 60%;
  }
}
@media (max-width: 576px) {
  .about-images .primary-image::before {
    bottom: -12px;
    left: -12px;
  }
}
.about-images .secondary-image {
  width: 260px;
  height: 560px;
  align-self: flex-end;
}
@media (max-width: 1100px) {
  .about-images .secondary-image {
    width: 230px;
    height: 500px;
  }
}
@media (max-width: 992px) {
  .about-images .secondary-image {
    width: 210px;
    height: 460px;
  }
}
@media (max-width: 768px) {
  .about-images .secondary-image {
    width: 190px;
    height: 420px;
  }
}
@media (max-width: 576px) {
  .about-images .secondary-image {
    width: 70%;
    max-width: 240px;
    height: 360px;
    align-self: center;
  }
}
@media (max-width: 400px) {
  .about-images .secondary-image {
    width: 90%;
    height: 340px;
  }
}
.about-images .secondary-image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #dbc8ac;
}
@media (max-width: 768px) {
  .about-images .secondary-image::after {
    height: 5px;
    bottom: -10px;
  }
}
@media (max-width: 480px) {
  .about-images .secondary-image::after {
    height: 4px;
    bottom: -8px;
  }
}

.about-content {
  flex: 1;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
@media (max-width: 992px) {
  .about-content {
    padding: 10px 15px;
    text-align: center;
  }
}
.about-content.appear {
  opacity: 1;
  transform: translateY(0);
}
.about-content .section-heading {
  margin-bottom: 30px;
}
.about-content .section-heading .service-tag {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #dbc8ac;
  position: relative;
  padding-left: 60px;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .about-content .section-heading .service-tag {
    display: inline-block;
    margin: 0 auto 15px;
  }
}
@media (max-width: 768px) {
  .about-content .section-heading .service-tag {
    font-size: 12px;
    padding-left: 50px;
  }
}
@media (max-width: 480px) {
  .about-content .section-heading .service-tag {
    letter-spacing: 1.5px;
    padding-left: 40px;
  }
}
.about-content .section-heading .service-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #dbc8ac;
}
@media (max-width: 768px) {
  .about-content .section-heading .service-tag::before {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .about-content .section-heading .service-tag::before {
    width: 30px;
  }
}
.about-content .section-heading .main-heading {
  font-family: "Gritlen";
  font-size: 42px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  max-width: 90%;
}
@media (max-width: 1100px) {
  .about-content .section-heading .main-heading {
    font-size: 38px;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .about-content .section-heading .main-heading {
    font-size: 36px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about-content .section-heading .main-heading {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-content .section-heading .main-heading {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .about-content .section-heading .main-heading {
    font-size: 26px;
  }
}
.about-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .about-content .description {
    margin: 0 auto 25px;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .about-content .description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .about-content .description {
    margin-bottom: 20px;
  }
}
.about-content .feature-list {
  list-style: none;
  padding: 0;
}
@media (max-width: 992px) {
  .about-content .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
  }
}
@media (max-width: 576px) {
  .about-content .feature-list {
    flex-direction: column;
    gap: 15px;
  }
}
.about-content .feature-list li {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 992px) {
  .about-content .feature-list li {
    margin-bottom: 0;
    width: calc(50% - 15px);
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .about-content .feature-list li {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .about-content .feature-list li {
    width: 100%;
    justify-content: center;
  }
}
.about-content .feature-list li.appear {
  opacity: 1;
  transform: translateX(0);
}
.about-content .feature-list li:nth-child(1) {
  transition-delay: 0.4s;
}
.about-content .feature-list li:nth-child(2) {
  transition-delay: 0.6s;
}
.about-content .feature-list li:nth-child(3) {
  transition-delay: 0.8s;
}
.about-content .feature-list li:nth-child(4) {
  transition-delay: 1s;
}
.about-content .feature-list li .arrow {
  color: #dbc8ac;
  margin-right: 10px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .about-content .feature-list li .arrow {
    font-size: 16px;
  }
}

.image-container:hover img {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-section {
  padding: 8rem 0;
  background-color: #fff;
}
.contact-section .container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
}

.contact-form-column .contact-title {
  font-size: 3.6rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  position: relative;
}
.contact-form-column .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.contact-form-column .contact-form .form-group {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.contact-form-column .contact-form .form-group:focus-within::after {
  width: 100%;
}
.contact-form-column .contact-form .form-group.full-width {
  grid-column: span 2;
}
.contact-form-column .contact-form .form-control {
  width: 100%;
  padding: 1.6rem 2rem;
  border: none;
  background-color: #f9f8f6;
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(60, 60, 77, 0.1);
}
.contact-form-column .contact-form .form-control:hover {
  background-color: #f5f3ef;
}
.contact-form-column .contact-form .form-control:focus {
  background-color: #f5f3ef;
  border-bottom: 1px solid #deb887;
}
.contact-form-column .contact-form .form-control::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-weight: 300;
}
.contact-form-column .contact-form .form-control::placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-weight: 300;
}
.contact-form-column .contact-form textarea.form-control {
  resize: none;
  height: 15rem;
}
.contact-form-column .contact-form .form-submit {
  margin-top: 2rem;
}
.contact-form-column .contact-form .form-submit .submit-btn {
  position: relative;
  background-color: #3c3c4d;
  color: white;
  text-decoration: none;
  padding: 1.5rem 3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-size: 1.4rem;
}
.contact-form-column .contact-form .form-submit .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #deb887;
  transition: all 0.5s ease;
  z-index: -1;
}
.contact-form-column .contact-form .form-submit .submit-btn:hover {
  transform: translateY(-0.3rem);
}
.contact-form-column .contact-form .form-submit .submit-btn:hover::before {
  left: 0;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-column .contact-person {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.contact-info-column .contact-person .person-image {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(222, 184, 135, 0.15);
  position: relative;
}
.contact-info-column .contact-person .person-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(222, 184, 135, 0.3);
  border-radius: 50%;
  z-index: 1;
}
.contact-info-column .contact-person .person-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.contact-info-column .contact-person .person-image img:hover {
  transform: scale(1.05);
}
.contact-info-column .contact-person .person-name {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.contact-info-column .contact-person .person-title {
  font-size: 1.4rem;
  color: #deb887;
  font-weight: 300;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.contact-info-column .contact-person .person-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 1px;
  background-color: rgba(222, 184, 135, 0.5);
}
.contact-info-column .contact-text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 2rem;
}

.error-message {
  color: #e74c3c;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 7rem 0;
  }
  .contact-section .contact-wrapper {
    gap: 4rem;
  }
  .contact-form-column .contact-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 992px) {
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .contact-form-column .contact-title {
    text-align: center;
  }
  .contact-info-column {
    order: -1;
  }
  .contact-info-column .contact-person .person-image {
    width: 15rem;
    height: 15rem;
  }
  .contact-info-column .contact-text {
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }
  .contact-form-column .contact-title {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
  }
  .contact-form-column .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-column .contact-form .form-group.full-width {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 5rem 0;
  }
  .contact-form-column .contact-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .contact-form-column .contact-form .form-control {
    padding: 1.4rem 1.6rem;
  }
  .contact-form-column .contact-form .form-submit .submit-btn {
    width: 100%;
    padding: 1.4rem 0;
  }
  .contact-info-column .contact-person .person-name {
    font-size: 2rem;
  }
  .contact-info-column .contact-person .person-title {
    font-size: 1.3rem;
  }
  .contact-info-column .contact-text p {
    font-size: 1.5rem;
  }
}
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  perspective: 1000px;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #e0e0e0;
  z-index: 3;
  width: 60%;
  will-change: transform, opacity;
}

.hero__welcome {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero__title {
  font-family: "Gritlen";
  font-size: 7.2rem;
  font-weight: 100;
  margin-bottom: 2rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
}

.hero__btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero__btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.25);
}

.hero__btn:hover:before {
  left: 100%;
}

.hero__slide--fade-out {
  opacity: 0;
  visibility: visible;
  transition: opacity 0.8s ease;
}

.hero__slide--fade-in {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease;
}

/* Text animations for active slide */
.hero__slide--active .hero__welcome {
  animation: simpleReveal 0.8s ease forwards 0.4s;
}

.hero__slide--active .hero__title {
  animation: simpleReveal 0.8s ease forwards 0.7s;
}

.hero__slide--active .hero__btn {
  animation: simpleReveal 0.8s ease forwards 1s;
}

@keyframes simpleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Progress indicator - enhanced */
.hero__progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 10;
}

.hero__progress-dot {
  width: 12px;
  height: 12px;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__progress-dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__progress-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__progress-dot:hover::before {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero__progress-dot--active {
  transform: scale(1.2);
}

.hero__progress-dot--active::before {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.8);
}

.hero__progress-dot--active::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Enhanced background image effect */
.hero__slide {
  transition: transform 1.5s ease-out;
  background-size: cover;
  background-position: center;
}

.hero__slide--active {
  animation: zoomBackground 12s linear forwards;
}

@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

/* Media queries for responsiveness */
@media (max-width: 950px) {
  .hero__title {
    font-size: 6rem;
  }
  .hero__welcome {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero__welcome {
    font-size: 1.2rem;
  }
  .hero__title {
    font-size: 5.5rem;
  }
}
@media (max-width: 660px) {
  .hero__title {
    font-size: 5rem;
  }
}
@media (max-width: 570px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media (max-width: 375px) {
  .hero__title {
    font-size: 3rem;
  }
}
.services-section {
  position: relative;
  padding: 10rem 0 20rem 0;
  overflow: hidden;
}
.services-section .services-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/src/images/backgrounds/services.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
.services-section .container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1240px) {
  .services-section .container {
    max-width: 100%;
    padding: 0 3rem;
  }
}
@media (max-width: 576px) {
  .services-section .container {
    padding: 0 2rem;
  }
}
.services-section .section-title {
  font-family: "JUST Sans", serif;
  text-align: center;
  margin-bottom: 7rem;
  font-size: 3.6rem;
  font-weight: 300;
  color: #333;
  position: relative;
}
@media (max-width: 992px) {
  .services-section .section-title {
    font-size: 3.2rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 480px) {
  .services-section .section-title {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    letter-spacing: 0.1rem;
  }
}
.services-section .section-title:after {
  content: "";
  display: block;
  width: 12rem;
  height: 0.1rem;
  background-color: #deb887;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .services-section .section-title:after {
    width: 3.5rem;
    margin: 1.5rem auto 0;
  }
}
@media (max-width: 480px) {
  .services-section .section-title:after {
    width: 3rem;
    margin: 1.2rem auto 0;
  }
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
.services-section .service-card {
  height: 100%;
  display: flex;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.services-section .service-card.appear {
  opacity: 1;
  transform: translateX(0);
}
.services-section .service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.services-section .service-card:nth-child(2) {
  transition-delay: 0.3s;
}
.services-section .service-card:nth-child(3) {
  transition-delay: 0.5s;
}
.services-section .service-card:hover .service-image-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.services-section .service-card:hover .service-content {
  background-color: rgba(219, 200, 172, 0.18);
}
.services-section .service-card .service-content {
  background-color: rgba(219, 200, 172, 0.1);
  padding: 4rem 3rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-height: 32rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 992px) {
  .services-section .service-card .service-content {
    padding: 3.5rem 2.5rem;
    min-height: 28rem;
  }
}
@media (max-width: 768px) {
  .services-section .service-card .service-content {
    padding: 3rem 2rem;
  }
}
@media (max-width: 576px) {
  .services-section .service-card .service-content {
    min-height: 26rem;
  }
}
.services-section .service-image-container {
  position: relative;
  margin: 0 auto;
  width: 18.9rem;
  height: 18.9rem;
  transition: transform 0.4s ease;
}
@media (max-width: 992px) {
  .services-section .service-image-container {
    width: 17rem;
    height: 17rem;
  }
}
@media (max-width: 768px) {
  .services-section .service-image-container {
    width: 16rem;
    height: 16rem;
  }
}
@media (max-width: 480px) {
  .services-section .service-image-container {
    width: 15rem;
    height: 15rem;
  }
}
.services-section .service-image-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  border: 0.1rem dashed #6b6b6b;
  border-radius: 50%;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  .services-section .service-image-container::before {
    width: 22rem;
    height: 22rem;
  }
}
@media (max-width: 768px) {
  .services-section .service-image-container::before {
    width: 20rem;
    height: 20rem;
  }
}
@media (max-width: 480px) {
  .services-section .service-image-container::before {
    width: 19rem;
    height: 19rem;
  }
}
.services-section .service-image-container:hover::before {
  border-color: #dbc8ac;
  transform: translate(-50%, -50%) rotate(45deg);
}
.services-section .service-image-circle {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background: #ccc;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.services-section .service-image-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.services-section .service-image-circle:hover img {
  transform: scale(1.1);
}
.services-section .service-title {
  font-size: 2.2rem;
  color: #333;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 992px) {
  .services-section .service-title {
    font-size: 2.1rem;
    margin-top: 3.5rem;
  }
}
@media (max-width: 768px) {
  .services-section .service-title {
    font-size: 2rem;
    margin-top: 3rem;
  }
}
@media (max-width: 480px) {
  .services-section .service-title {
    font-size: 1.9rem;
    margin-top: 2.5rem;
  }
}
.services-section .service-description {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: -2rem;
}
@media (max-width: 992px) {
  .services-section .service-description {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .services-section .service-description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */