@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Varela Round", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #21413c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bac91; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #1bac91; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bac91; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --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: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 62px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 80px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 0;
  font-weight: 600;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.tabs .nav-item:last-child {
  margin-bottom: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.tabs .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.tabs .nav-link p {
  font-size: 15px;
  margin: 0;
}

.tabs .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.tabs .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.tabs .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 .pricing-toggle {
  position: relative;
}

.pricing-2 .pricing-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
}

.pricing-2 .pricing-toggle span.active {
  color: var(--accent-color);
}

.pricing-2 .pricing-toggle span .badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
  border-radius: 20px;
  margin-left: 0.5rem;
}

.pricing-2 .pricing-toggle .form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: none;
  cursor: pointer;
}

.pricing-2 .pricing-toggle .form-switch .form-check-input:checked {
  background-color: var(--accent-color);
}

.pricing-2 .pricing-toggle .form-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pricing-2 .pricing-item {
  position: relative;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-2 .pricing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent-color), transparent 85%),
    var(--accent-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-2 .pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.pricing-2 .pricing-item:hover::before {
  opacity: 1;
}

.pricing-2 .pricing-item.featured {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color), transparent 97%),
    var(--surface-color)
  );
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pricing-2 .pricing-item.featured::before {
  opacity: 1;
}

.pricing-2 .pricing-item .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-2 .pricing-item .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-2 .pricing-item .pricing-header .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
}

.pricing-2 .pricing-item .pricing-header .price sup {
  font-size: 1.5rem;
  position: relative;
  top: -1rem;
}

.pricing-2 .pricing-item .pricing-header .price span {
  font-size: 1rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing-2 .pricing-item .pricing-header .yearly {
  display: none;
}

.pricing-2 .pricing-item.yearly-active .monthly {
  display: none;
}

.pricing-2 .pricing-item.yearly-active .yearly {
  display: block;
}

.pricing-2 .pricing-item ul {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-2 .pricing-item ul li {
  padding: 0.75rem 0;
  color: var(--default-color);
}

.pricing-2 .pricing-item ul li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.pricing-2 .pricing-item ul li.na {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.pricing-2 .pricing-item ul li.na i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing-2 .pricing-item .btn-buy {
  display: inline-block;
  width: 100%;
  margin-top: auto;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--contrast-color);
  background: var(--accent-color);
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-2 .pricing-item .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-toggle {
  position: relative;
  margin-bottom: 2rem;
}

.pricing .pricing-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing .pricing-toggle span.active {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing .pricing-toggle span .badge {
  background-color: color-mix(in srgb, #4caf50, transparent 70%);
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.pricing .pricing-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
}

.pricing .pricing-toggle .form-check-input:checked {
  background-color: var(--accent-color);
}

.pricing .pricing-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: transparent;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-item.popular {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pricing .pricing-item.popular .popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: color-mix(in srgb, #9c27b0, transparent 80%);
  color: #9c27b0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.pricing .pricing-item .pricing-header {
  margin-bottom: 1.5rem;
}

.pricing .pricing-item .pricing-header .pricing-category {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.pricing .pricing-item .pricing-header .price-wrap {
  margin-bottom: 0.5rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
}

.pricing .pricing-item .pricing-header .price-wrap .price sup {
  font-size: 1.25rem;
  position: relative;
  top: -0.75rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-item .pricing-header .price-wrap .yearly {
  display: none;
}

.pricing .pricing-item .pricing-header .pricing-description {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .monthly {
  display: none;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .yearly {
  display: block;
}

.pricing .pricing-cta {
  margin-bottom: 1.5rem;
}

.pricing .pricing-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.pricing .pricing-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.pricing .pricing-features {
  flex-grow: 1;
}

.pricing .pricing-features h6 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing .pricing-features .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing .pricing-features .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--default-color);
}

.pricing .pricing-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing .pricing-features .feature-list li .feature-highlight {
  color: #9c27b0;
  font-weight: 600;
}

.pricing.yearly-active .pricing-toggle .monthly {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.pricing.yearly-active .pricing-toggle .yearly {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing.yearly-active .pricing-item .price-wrap .monthly {
  display: none;
}

.pricing.yearly-active .pricing-item .price-wrap .yearly {
  display: block;
}

@media (max-width: 992px) {
  .pricing .pricing-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing .row.gy-4 > [class*="col-"] {
    margin-bottom: 2rem;
  }

  .pricing .pricing-item {
    padding: 1.5rem;
  }

  .pricing .pricing-header .price-wrap .price {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-toggle {
    flex-direction: column;
  }

  .pricing .pricing-toggle .form-check {
    margin: 1rem 0;
  }

  .pricing .pricing-toggle span .badge {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Register 3 Section
--------------------------------------------------------------*/
.register-3 {
  padding-top: 59px;
  padding-bottom: 60px;
}

.register-3 .register-card {
  background-color: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.register-3 .register-card .shape-1,
.register-3 .register-card .shape-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.register-3 .register-card .shape-1 {
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  top: -150px;
  right: -150px;
}

.register-3 .register-card .shape-2 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--heading-color), transparent 92%);
  bottom: -100px;
  left: -100px;
}

.register-3 .card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register-3 .card-header .brand-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.register-3 .card-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.register-3 .card-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register-3 .form-group {
  position: relative;
  z-index: 1;
}

.register-3 .form-group .input-wrapper {
  position: relative;
}

.register-3 .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.register-3 .form-group .input-wrapper .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
}

.register-3 .form-group .input-wrapper .toggle-password:hover {
  color: var(--heading-color);
}

.register-3 .form-group .input-wrapper .form-control {
  height: 3.25rem;
  padding: 1.25rem 1rem 0.25rem 2.75rem;
  border: 2px solid transparent;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  color: var(--default-color);
}

.register-3 .form-group .input-wrapper .form-control::placeholder {
  color: transparent;
}

.register-3 .form-group .input-wrapper .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.register-3 .form-group .input-wrapper .form-control:focus ~ label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--accent-color);
}

.register-3 .form-group .input-wrapper .form-control:focus ~ .input-icon {
  color: var(--accent-color);
}

.register-3
  .form-group
  .input-wrapper
  .form-control:not(:placeholder-shown)
  ~ label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--heading-color);
}

.register-3 .form-group .input-wrapper .form-control:not(:placeholder-shown) {
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register-3 .form-group .input-wrapper label {
  position: absolute;
  left: 2.75rem;
  top: 0.75rem;
  margin: 0;
  transition: all 0.3s ease;
  transform-origin: 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  pointer-events: none;
  font-size: 0.9rem;
}

.register-3 .password-strength {
  margin-top: 0.75rem;
}

.register-3 .password-strength .strength-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
  display: block;
}

.register-3 .password-strength .strength-meter {
  display: flex;
  gap: 4px;
}

.register-3 .password-strength .strength-meter .meter-segment {
  height: 4px;
  flex: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.register-3 .password-strength .strength-meter .meter-segment.weak {
  background-color: #dc3545;
}

.register-3 .password-strength .strength-meter .meter-segment.fair {
  background-color: #ffc107;
}

.register-3 .password-strength .strength-meter .meter-segment.good {
  background-color: #0dcaf0;
}

.register-3 .password-strength .strength-meter .meter-segment.strong {
  background-color: #198754;
}

.register-3 .signup-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-3 .signup-options .option {
  position: relative;
}

.register-3 .signup-options .option .custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.register-3
  .signup-options
  .option
  .custom-checkbox:checked
  + label
  .check-icon {
  opacity: 1;
  transform: scale(1);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register-3 .signup-options .option .custom-checkbox:focus + label .check-icon {
  border-color: var(--accent-color);
}

.register-3 .signup-options .option label {
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register-3 .signup-options .option label .check-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--contrast-color);
  opacity: 0;
  transform: scale(0.8);
}

.register-3 .signup-options .option label .check-icon:not(.checked) {
  opacity: 1;
  transform: scale(1);
}

.register-3 .signup-options .option label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.register-3 .signup-options .option label a:hover {
  text-decoration: underline;
}

.register-3 .btn-primary {
  padding: 0.875rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.register-3 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.register-3 .btn-primary:active {
  transform: translateY(0);
}

.register-3 .card-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register-3 .card-footer p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register-3 .card-footer .sign-in-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}

.register-3 .card-footer .sign-in-link:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .register-3 .register-card {
    padding: 2rem 1.5rem;
  }

  .register-3 .register-card .card-header {
    margin-bottom: 2rem;
  }

  .register-3 .register-card .card-header h2 {
    font-size: 1.75rem;
  }
}

.contract .contract-toggle {
  position: relative;
  margin-bottom: 2rem;
}

.contract .contract-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contract .contract-toggle span.active {
  color: var(--accent-color);
  font-weight: 600;
}

.contract .contract-toggle span .badge {
  background-color: color-mix(in srgb, #4caf50, transparent 70%);
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.contract .contract-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
}

.contract .contract-toggle .form-check-input:checked {
  background-color: var(--accent-color);
}

.contract .contract-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: transparent;
}

.contract.spzoo-active .contract-toggle .jdg {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.contract.spzoo-active .contract-toggle .spzoo {
  color: var(--accent-color);
  font-weight: 600;
}

.contract.spzoo-active .contract-item .contract-wrap .jdg {
  display: none;
}

.contract.spzoo-active .contract-item .contract-wrap .spzoo {
  display: block;
}

@media (max-width: 576px) {
  .contract .contract-toggle {
    flex-direction: column;
  }

  .contract .contract-toggle .form-check {
    margin: 1rem 0;
  }

  .contract .contract-toggle span .badge {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}
/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service
  .tos-content
  .content-section
  .disclaimer-box
  ul
  li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  );
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service
  .tos-contact
  .contact-box
  .contact-content
  .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy 2 Section
--------------------------------------------------------------*/
.privacy-2 {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-2 .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy-2 .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-2 .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy-2 .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy-2 .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy-2 .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy-2 .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy-2 .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy-2 .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy-2 .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy-2 .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy-2 .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy-2 .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-contact p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy-2 .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy-2 .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy-2 {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy-2 .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy-2 h1 {
    font-size: 24pt;
  }

  .privacy-2 h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy-2 h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy-2 p,
  .privacy-2 ul {
    page-break-inside: avoid;
  }

  .privacy-2 .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy-2 .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy-2 .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy-2 .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy-2 .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy-2 .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy-2 .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  max-width: 900px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header {
  margin-bottom: 2.5rem;
}

.order-confirmation .confirmation-header .success-icon i {
  font-size: 4rem;
  color: #4bb543;
}

.order-confirmation .confirmation-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-confirmation .confirmation-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.order-confirmation .confirmation-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.order-confirmation .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-details address {
  font-style: normal;
  line-height: 1.6;
}

.order-confirmation .order-details .shipping-method {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.9rem;
}

.order-confirmation .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details {
    padding: 1.5rem;
  }
}

.order-confirmation .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.order-confirmation .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-right: 1rem;
}

.order-confirmation .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.order-confirmation .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.order-confirmation
  .order-summary
  .order-items
  .item-row
  .item-details
  .quantity-price {
  font-size: 0.95rem;
}

.order-confirmation
  .order-summary
  .order-items
  .item-row
  .item-details
  .quantity-price
  .price {
  font-weight: 600;
}

.order-confirmation .order-summary .order-totals {
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.order-confirmation .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .next-steps p {
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info i {
  color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn {
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.order-confirmation .help-contact {
  font-size: 0.95rem;
}

.order-confirmation .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.order-confirmation .help-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details,
  .order-confirmation .order-summary,
  .order-confirmation .next-steps {
    padding: 1.25rem;
  }

  .order-confirmation .order-items .item-row .item-image {
    flex: 0 0 70px;
  }

  .order-confirmation .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }

  .order-confirmation .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}
