/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

  /* Fonts */
  --default-font:
    "Montserrat",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;

  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;

  /* Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #22353f;

  --accent-color: #ac86ac;

  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Navigation */
  --nav-color: #ffffff;
  --nav-hover-color: #ac86ac;

  --nav-mobile-background-color: #ffffff;

  scroll-behavior: smooth;
}


/* =========================================================
   COLOR PRESETS
========================================================= */

.light-background {
  --background-color: #f6f4f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}


/* =========================================================
   GLOBAL
========================================================= */

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* =========================================================
   HEADER
========================================================= */

.header {

  --background-color: #f6f4f8;
  --default-color: #ffffff;
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);

  padding: 20px 0;

  transition: all 0.5s;

  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  transition: 0.3s;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}


/* Header Scroll */

.scrolled .header {
  --background-color: #f6f4f8;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.scrolled .header .logo img {
  max-height: 42px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {

  display: flex;
  align-items: center;
  gap: 25px;

  list-style: none;

  margin: 0;
  padding: 0;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {

  color: #22353f;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  color: #d7b4d7;
}


/* Mobile Toggle */

.mobile-nav-toggle {

  display: none;

  font-size: 32px;

  cursor: pointer;

  color: #ffffff;

  z-index: 999;
}


/* Scroll Navigation */

.scrolled .navmenu a {
  color: #22353f;
}

.scrolled .navmenu a:hover,
.scrolled .navmenu .active {
  color: #ac86ac;
}

.scrolled .mobile-nav-toggle {
  color: #22353f;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 991px) {

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {

    position: fixed;

    top: 0;
    right: -300px;

    width: 280px;
    height: 100vh;

    background: #ffffff;

    padding-top: 80px;

    transition: 0.3s ease;

    z-index: 998;
  }

  .navmenu ul {

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 20px;
  }

  .navmenu li {
    width: 100%;
  }

  .navmenu a {

    width: 100%;

    padding: 14px 0;

    color: #22353f;

    border-bottom: 1px solid #f1f1f1;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #ac86ac;
  }

  .mobile-nav-active .navmenu {
    right: 0;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {

    position: fixed;

    right: 20px;
    top: 20px;

    z-index: 9999;
  }
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

  color: var(--default-color);
  background-color: var(--background-color);

  font-size: 14px;

  text-align: center;

  padding: 30px 0;

  position: relative;
}

.footer p {

  font-size: 15px;

  font-style: italic;

  margin-bottom: 30px;
}

.footer .social-links {
  margin-bottom: 30px;
}

.footer .social-links a {

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent-color);
  color: var(--contrast-color);

  border-radius: 50%;

  margin: 0 4px;

  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {

  padding-top: 25px;

  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {

  position: fixed;

  inset: 0;

  z-index: 9999;

  overflow: hidden;

  background-color: var(--background-color);

  transition: all 0.6s ease-out;
}

#preloader::before {

  content: "";

  position: fixed;

  top: calc(50% - 30px);
  left: calc(50% - 30px);

  width: 60px;
  height: 60px;

  border: 6px solid var(--accent-color);

  border-top-color:
    color-mix(in srgb, var(--accent-color), transparent 90%);

  border-radius: 50%;

  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {

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

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


/* =========================================================
   SCROLL TOP
========================================================= */

.scroll-top {

  position: fixed;

  visibility: hidden;
  opacity: 0;

  right: 15px;
  bottom: -15px;

  z-index: 99999;

  width: 44px;
  height: 44px;

  border-radius: 50px;

  background-color: var(--accent-color);

  transition: all 0.4s;
}

.scroll-top i {

  font-size: 24px;

  color: var(--contrast-color);

  line-height: 0;
}

.scroll-top:hover {
  background-color:
    color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {

  visibility: visible;
  opacity: 1;

  bottom: 15px;
}


/* =========================================================
   GLOBAL SECTIONS
========================================================= */

section,
.section {

  color: var(--default-color);

  background-color: var(--background-color);

  padding: 60px 0;

  scroll-margin-top: 78px;

  overflow: clip;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {

  text-align: center;

  padding-bottom: 25px;

  position: relative;
}

.section-title h2 {

  font-size: 32px;

  font-weight: 400;

  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {

  width: 100%;
  min-height: 100vh;

  position: relative;

  padding: 80px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
}

.hero .container {

  position: relative;

  z-index: 3;
}

.hero h2 {

  margin: 0;

  font-size: 48px;

  font-weight: 500;
}

.hero p {

  margin-top: 10px;

  font-size: 24px;

  color: var(--heading-color);
}

.hero .btn-get-started {

  display: inline-block;

  margin-top: 30px;

  padding: 10px 40px;

  border-radius: 50px;

  background: var(--accent-color);

  color: var(--contrast-color);

  font-size: 16px;
  font-weight: 400;

  letter-spacing: 1px;

  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background:
    color-mix(in srgb, var(--accent-color) 90%, white 15%);
}


/* Hero Mobile */

@media (max-width: 768px) {

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


/* =========================================================
   ABOUT
========================================================= */

.about .content h3 {

  font-size: 1.75rem;

  font-weight: 700;
}

.about .content .fst-italic {

  color:
    color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {

  list-style: none;

  padding: 0;
}

.about .content ul li {

  display: flex;

  padding-top: 10px;
}

.about .content ul i {

  color: var(--accent-color);

  margin-right: 0.5rem;

  line-height: 1.2;

  font-size: 1.25rem;
}


/* =========================================================
   WHY US
========================================================= */

.why-us .card {

  background-color: var(--surface-color);

  color: var(--default-color);

  border: 0;

  border-radius: 0;

  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);

  position: relative;

  height: 100%;

  margin-bottom: 20px;
}

.why-us .card .icon {

  width: 72px;
  height: 72px;

  position: absolute;

  left: calc(50% - 32px);
  bottom: -36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 4px solid var(--background-color);

  background-color:
    color-mix(in srgb, var(--accent-color), white 92%);

  color: var(--accent-color);

  font-size: 28px;

  transition: 0.3s;
}

.why-us .card:hover .icon {

  background-color: var(--accent-color);

  color: var(--contrast-color);
}

.why-us .card p {

  padding: 0 30px 30px;

  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;
}


/* =========================================================
   SERVICES
========================================================= */

.services .service-item {

  background-color: var(--surface-color);

  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);

  padding: 60px 30px;

  border-radius: 18px;

  border-bottom: 5px solid var(--surface-color);

  height: 100%;

  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 50px;

  background: var(--accent-color);

  color: var(--contrast-color);

  font-size: 28px;
}

.services .service-item h3 {

  margin: 10px 0 15px;

  font-size: 22px;

  font-weight: 700;
}

.services .service-item p {

  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;
}

@media (min-width: 1365px) {

  .services .service-item:hover {

    transform: translateY(-10px);

    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}


/* =========================================================
   CONTACT
========================================================= */

.contact .info-item i {

  color: var(--accent-color);

  font-size: 36px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .info-item h3 {

  margin: 20px 0;

  font-size: 24px;

  font-weight: 700;
}

.contact .info-item p {

  margin-bottom: 0;

  font-size: 14px;
}

@media (min-width: 992px) {

  .contact .info-item.info-item-borders {

    border-left: 1px solid
      color-mix(in srgb, var(--default-color), transparent 85%);

    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 85%);
  }
}


/* =========================================================
   WHATSAPP FLOAT BUTTON
========================================================= */

.whatsapp-float {

  position: fixed;

  right: 25px;
  bottom: 70px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #25d366;

  color: #ffffff;

  border-radius: 50%;

  font-size: 32px;

  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  z-index: 9999;

  transition: all 0.3s ease;
}

.whatsapp-float:hover {

  background-color: #1ebe5d;

  transform: scale(1.08);

  color: #ffffff;
}


/* =========================================================
   AOS MOBILE FIX
========================================================= */

@media screen and (max-width: 768px) {

  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}