@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Rubik",  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: "Anton",  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: #4a4b64; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #15406d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #15406d; /* 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: #4a4b64;  /* The default color of the main navmenu links */
  --nav-hover-color: #15406d; /* 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: #4a4b64; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #15406d; /* 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: #f5f6ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #15406d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #0b5995;
  --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(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(255, 255, 255, 0);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #00a6ff;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

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

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h2:before,
  .section-title h2:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 135px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.hero .hero-title {
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
}

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

.hero .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%);
}

.hero .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .hero-image img {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.hero .floating-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--accent-color);
}

.hero .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.hero .floating-card.card-1 {
  top: -20px;
  left: 0;
}

.hero .floating-card.card-2 {
  bottom: -20px;
  right: 0;
}

.hero .shape {
  position: absolute;
  opacity: 0.1;
}

.hero .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--heading-color);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.hero .shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }

  .hero .hero-image {
    max-width: 100%;
  }

  .hero .floating-card {
    padding: 10px 15px;
  }

  .hero .floating-card i {
    font-size: 1.2rem;
  }

  .hero .floating-card span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# problems Section
--------------------------------------------------------------*/
.problems {
  padding-top: 61px;
  padding-bottom: 60px;
}

.problems .problems-item {
  padding: 32px;
  background: var(--surface-color);
  border-radius: 16px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.problems .problems-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.problems .problems-item:hover .problems-icon {
  background: #1d3e69;
  color: var(--contrast-color);
}

.problems .problems-item:hover .problems-arrow {
  color: var(--accent-color);
}

.problems .problems-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
  color: var(--accent-color);
}

.problems .problems-icon i {
  font-size: 28px;
  line-height: 0;
}

.problems .problems-content .problems-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.problems .problems-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.problems .problems-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.problems .learn-more-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.problems .learn-more-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.problems .learn-more-link i {
  margin-left: 4px;
  font-size: 12px;
  transition: transform 0.3s ease-in-out;
}

.problems .learn-more-link:hover i {
  transform: translateX(4px);
}

.problems .problems-arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .problems .problems-item {
    padding: 28px;
  }

  .problems .problems-icon {
    width: 50px;
    height: 50px;
  }

  .problems .problems-icon i {
    font-size: 24px;
  }

  .problems .problems-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .problems .col-lg-3.col-md-6 {
    margin-bottom: 20px;
    /* Smaller gap between stacked cards */
  }

  .problems .problems-item {
    /* padding: 24px; */
    margin-bottom: 0;
  }

  .problems .problems-arrow {
    display: none;
  }

  .problems .problems-content h3 {
    font-size: 20px;
  }

  .problems .problems-content p {
    font-size: 14px;
  }

  .problems .learn-more-link {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Growth Systems Section
--------------------------------------------------------------*/
.growth-systems {
  padding-top: 73px;
  padding-bottom: 60px;
}

.growth-systems .service-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  flex-direction: column;
}

.growth-systems .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.growth-systems .service-card.active {
  border-color: var(--accent-color);
  position: relative;
}


.growth-systems .service-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 25px;
  font-size: 28px;
}

.growth-systems .service-card .content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.growth-systems .service-card .content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.growth-systems .service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.growth-systems .service-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--default-color);
}

.growth-systems .service-card .feature-list li i {
  color: #2ecc71;
  font-size: 16px;
}

.growth-systems .service-card .btn-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
}

.growth-systems .service-card .btn-link i {
  transition: transform 0.3s ease;
}

.growth-systems .service-card .btn-link:hover i {
  transform: translateX(5px);
}

.growth-systems .ui-preview-wrapper {
  position: relative;
  padding: 20px;
}

.growth-systems .ui-preview-wrapper img {
  border: 8px solid var(--surface-color);
}

.growth-systems .ui-preview-wrapper .floating-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  min-width: 180px;
}

.growth-systems .ui-preview-wrapper .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: #2ecc71;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.growth-systems .ui-preview-wrapper .floating-badge .badge-text span {
  font-weight: 600;
  font-size: 24px;
  color: var(--heading-color);
  display: block;
  line-height: 1;
}

.growth-systems .ui-preview-wrapper .floating-badge .badge-text small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.growth-systems .cta-content .section-subtitle {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.growth-systems .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.growth-systems .cta-content .btn {
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.growth-systems .cta-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.growth-systems .cta-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.growth-systems .cta-content .btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.growth-systems .cta-content .btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .growth-systems .ui-preview-wrapper {
    margin-bottom: 50px;
  }

  .growth-systems .ui-preview-wrapper .floating-badge {
    right: 20px;
  }

  .growth-systems .cta-content {
    text-align: center;
  }

  .growth-systems .cta-content .d-flex {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: var(--background-color);
  overflow: hidden;
}

.about .about-images-wrapper {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
  z-index: 1;
}

@media (max-width: 992px) {
  .about .about-images-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

.about .image-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px -10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about .image-main:hover img {
  transform: scale(1.03);
}

.about .image-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid var(--background-color);
  z-index: 3;
  box-shadow: 0 15px 30px -5px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 992px) {
  .about .image-offset {
    display: none;
  }
}

.about .image-offset img {
  width: 100%;
  height: auto;
  display: block;
}

.about .experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: #1d3e69;
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  animation: float-badge 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .about .experience-badge {
    left: 20px;
    top: 20px;
    padding: 16px 20px;
  }
}

.about .experience-badge .years {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.about .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.about .shape-pattern {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 200px;
  height: 200px;
  z-index: 1;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 85%) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.7;
}

@media (min-width: 1200px) {
  .about .about-content {
    padding-left: 40px;
  }
}

.about .section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 45px;
}

.about .section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 1.75rem;
  }
}

.about .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 16px;
  font-weight: 500;
}

.about .description {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.7;
}

.about .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .about .features-grid {
    grid-template-columns: 1fr;
  }
}

.about .feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .feature-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .feature-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.about .feature-card:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-row {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.about .stat-box {
  display: flex;
  flex-direction: column;
}

.about .stat-box .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
}

.about .stat-box .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .action-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about .btn-primary-custom {
  background: var(--accent-color);
  color: #1d3e69;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.about .btn-primary-custom:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.about .btn-primary-custom:hover i {
  transition: 0.3s;
  transform: translateX(4px);
}

.about .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about .contact-info .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}

.about .contact-info .text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}

.about .contact-info .text span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.8rem;
}

.about .contact-info .text a {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .contact-info .text a:hover {
  color: var(--accent-color);
}

.about .contact-info:hover .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Manorhats Section
--------------------------------------------------------------*/
.manorhats {
  padding-top: 120px;
  padding-bottom: 69px;
}

.manorhats .hero-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.manorhats .hero-header h2 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.manorhats .hero-header h2 .highlight {
  color: var(--accent-color);
  position: relative;
}

.manorhats .hero-header h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: -1;
}

.manorhats .media-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.manorhats .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manorhats .media-block .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  background: linear-gradient(to top, rgb(29, 62, 105, 1), transparent);

}

.manorhats .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
}

.manorhats .media-block .overlay-content .stats-item .number {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.manorhats .media-block .overlay-content .stats-item .label {
  font-size: 14px;
  color:#ffffff;
  margin-top: 5px;
}

.manorhats .info-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manorhats .info-block .lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.manorhats .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.manorhats .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.manorhats .info-block .feature-list li:last-child {
  border-bottom: none;
}

.manorhats .info-block .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.manorhats .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.manorhats .info-block .action-row .btn-get-started {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.manorhats .info-block .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
}

.manorhats .info-block .action-row .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.manorhats .info-block .action-row .btn-contact i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.manorhats .info-block .action-row .btn-contact:hover {
  color: var(--accent-color);
}

.manorhats .info-block .action-row .btn-contact:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .manorhats {
    padding: 80px 0 70px;
  }

  .manorhats .hero-header h1,
  .manorhats .hero-header h2 {
    font-size: 40px;
  }

  .manorhats .media-block {
    min-height: 300px;
  }

  .manorhats .info-block {
    margin-top: 10px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .manorhats {
    padding: 100px 0 50px;
  }

  .manorhats .hero-header h1,
  .manorhats .hero-header h2 {
    font-size: 32px;
  }

  .manorhats .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .manorhats .media-block {
    min-height: 250px;
  }

  .manorhats .media-block .overlay-content {
    padding: 20px;
  }

  .manorhats .media-block .overlay-content .stats-item .number {
    font-size: 36px;
  }

  .manorhats .info-block {
    padding: 25px;
  }

  .manorhats .info-block .lead-text {
    font-size: 15px;
  }

  .manorhats .info-block .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .manorhats .info-block .action-row .btn-get-started {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 64px;
  --background-color: var(--contrast-color);
  padding-bottom: 64px;
}

.call-to-action .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: #1d3e69;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 60px 20px;
  }

  .call-to-action .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  .faq-info-card {
    background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #000));
    border-radius: 24px;
    padding: 48px;
    color: var(--contrast-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color) 10%, transparent) 0%, transparent 70%);
      pointer-events: none;
    }

    .info-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      width: fit-content;
      margin-bottom: 32px;

      i {
        font-size: 16px;
      }
    }

    h3 {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
      color: var(--contrast-color);
    }

    p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.9;
      margin-bottom: 32px;
    }

    .stats-row {
      display: flex;
      gap: 32px;
      margin-bottom: 32px;
      padding-top: 24px;
      border-top: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);

      .stat-item {
        display: flex;
        flex-direction: column;
        gap: 4px;

        .stat-number {
          font-size: 36px;
          font-weight: 800;
          line-height: 1;
        }

        .stat-label {
          font-size: 14px;
          opacity: 0.8;
          text-transform: uppercase;
          letter-spacing: 1px;
        }
      }
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: var(--contrast-color);
      color: var(--accent-color);
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      width: fit-content;
      margin-top: auto;

      i {
        transition: transform 0.3s ease;
      }

      &:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px color-mix(in srgb, #000 30%, transparent);

        i {
          transform: translateX(4px);
        }
      }
    }

    @media (max-width: 991px) {
      padding: 40px;
      margin-bottom: 32px;

      h3 {
        font-size: 28px;
      }

      .stats-row {
        gap: 24px;

        .stat-item .stat-number {
          font-size: 28px;
        }
      }
    }

    @media (max-width: 576px) {
      padding: 32px 24px;

      h3 {
        font-size: 24px;
      }

      .info-badge {
        padding: 8px 16px;
        font-size: 12px;
      }

      .stats-row {
        .stat-item .stat-number {
          font-size: 24px;
        }
      }

      .contact-btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
      }
    }
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    background: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color) 6%, transparent);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    &:hover {
      box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 10%, transparent);
    }

    &.faq-active {
      box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color) 15%, transparent);

      .faq-header {
        .faq-number {
          background: var(--accent-color);
          color: var(--contrast-color);
        }

        h4 {
          color: var(--accent-color);
        }

        .faq-toggle {
          background: var(--accent-color);
          color: var(--contrast-color);
          transform: rotate(45deg);
        }
      }

      .faq-content {
        grid-template-rows: 1fr;
        opacity: 1;
        visibility: visible;
      }
    }

    .faq-header {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      cursor: pointer;
      transition: all 0.3s ease;

      .faq-number {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: color-mix(in srgb, var(--accent-color) 12%, transparent);
        color: var(--accent-color);
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        transition: all 0.3s ease;
      }

      h4 {
        flex: 1;
        margin: 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--heading-color);
        line-height: 1.5;
        transition: all 0.3s ease;
      }

      .faq-toggle {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: color-mix(in srgb, var(--default-color) 8%, transparent);
        border-radius: 50%;
        color: var(--heading-color);
        font-size: 18px;
        font-weight: 300;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        i {
          line-height: 1;
        }
      }

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

        .faq-toggle {
          background: color-mix(in srgb, var(--accent-color) 15%, transparent);
          color: var(--accent-color);
        }
      }
    }

    .faq-content {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

      .content-inner {
        overflow: hidden;
        padding: 0 28px 24px 96px;

        p {
          margin: 0;
          font-size: 16px;
          line-height: 1.7;
          color: color-mix(in srgb, var(--default-color) 80%, transparent);
        }
      }
    }

    @media (max-width: 768px) {
      .faq-header {
        padding: 20px 24px;
        gap: 16px;

        .faq-number {
          width: 40px;
          height: 40px;
          font-size: 13px;
          border-radius: 10px;
        }

        h4 {
          font-size: 16px;
        }

        .faq-toggle {
          width: 36px;
          height: 36px;
          font-size: 16px;
        }
      }

      .faq-content .content-inner {
        padding: 0 24px 20px 80px;

        p {
          font-size: 15px;
        }
      }
    }

    @media (max-width: 576px) {
      .faq-header {
        padding: 18px 20px;
        gap: 12px;

        .faq-number {
          width: 36px;
          height: 36px;
          font-size: 12px;
          border-radius: 8px;
        }

        h4 {
          font-size: 15px;
        }

        .faq-toggle {
          width: 32px;
          height: 32px;
          font-size: 14px;
        }
      }

      .faq-content .content-inner {
        padding: 0 20px 18px 20px;

        p {
          font-size: 14px;
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Bookings Section
--------------------------------------------------------------*/
.bookings {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Post List Section
--------------------------------------------------------------*/
.post-list article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.post-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.post-list .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.post-list .title {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.post-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.post-list .title a:hover {
  color: var(--accent-color);
}

.post-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.post-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.post-list .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding-top: 120px;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 50%, var(--background-color) 100%);
  padding-bottom: 120px;
}

.call-to-action-2 .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  overflow: hidden;
}

.call-to-action-2 .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-2 .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action-2 .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action-2 .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action-2 .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action-2 .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action-2 .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
  color: #1d3e69;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action-2 .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action-2 .content-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action-2 .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action-2 .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action-2 .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action-2 .features-grid .feature-item .feature-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features-grid .feature-item span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.call-to-action-2 .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-to-action-2 .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.call-to-action-2 .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
  color: #1d3e69;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.call-to-action-2 .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action-2 .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action-2 .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

.call-to-action-2 .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action-2 .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action-2 .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.call-to-action-2 .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action-2 .image-section .main-image-wrapper {
  position: relative;
  max-width: 450px;
}

.call-to-action-2 .image-section .main-image-wrapper .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.call-to-action-2 .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action-2 .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action-2 .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action-2 .image-section .stats-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 3;
}

.call-to-action-2 .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: #1d3e69;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action-2 .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.8px;
}

.call-to-action-2 .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action-2 .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action-2 .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 80px 0;
  }

  .call-to-action-2 .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action-2 .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action-2 .content-section p {
    font-size: 1rem;
  }

  .call-to-action-2 .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action-2 .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action-2 .cta-actions .secondary-action {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .call-to-action-2 .image-section {
    margin-top: 3rem;
  }

  .call-to-action-2 .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action-2 .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .call-to-action-2 {
    padding: 60px 0;
  }

  .call-to-action-2 .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action-2 .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action-2 .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action-2 .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action-2 .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action-2 .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action-2 .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action-2 .overlay-circle {
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  overflow: hidden;
}

.contact .info-box {
  color: var(--default-color);
  background: var(--surface-color);
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--accent-color);
  border-radius: 50%;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.contact .info-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}

.contact .map-container {
  overflow: hidden;
  padding-bottom: 500px;
  position: relative;
  height: 0;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@media (max-width: 992px) {
  .contact .map-container {
    padding-bottom: 350px;
  }
}

@media (max-width: 768px) {
  .contact .map-container {
    padding-bottom: 300px;
  }
}

.contact .php-email-form {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
}

.contact .php-email-form .form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  font-size: 14px;
  transition: all 0.3s;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form .form-control::placeholder {
  color: #adb5bd;
}

.contact .php-email-form textarea.form-control {
  min-height: 120px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 12px 34px;
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

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

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 500;
  border-radius: 10px;
}

.contact .php-email-form .loading {
  background: #fff;
  color: var(--accent-color);
}

.contact .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: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .error-message {
  color: #fff;
  background: #ed3c0d;
}

.contact .php-email-form .sent-message {
  color: #fff;
  background: #18d26e;
}

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

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

.contact .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .contact .info-box {
    margin-bottom: 20px;
    padding: 20px;
  }

  .contact .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact .info-box {
    padding: 15px;
  }

  .contact .info-box i {
    font-size: 28px;
    padding: 12px;
  }

  .contact .info-box h3 {
    font-size: 18px;
  }

  .contact .social-links {
    gap: 12px;
  }

  .contact .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-details .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-details .service-hero .service-description {
    font-size: 1.1rem;
  }

  .service-details .service-visual img {
    height: 250px;
  }

  .service-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .timeline-section .timeline::before {
    left: 20px;
  }

  .service-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .service-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.post-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.post-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.post-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.post-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details .article-header .title {
    font-size: 2.2rem;
  }
}

.post-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.post-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.post-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .post-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .post-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.post-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.post-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .post-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.post-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .post-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.post-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .post-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.post-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.post-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.post-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.post-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.post-details .article-wrapper .table-of-contents nav ul li a:hover,
.post-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.post-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.post-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.post-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.post-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.post-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.post-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.post-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.post-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.post-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.post-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.post-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.post-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.post-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.post-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .post-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.post-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.post-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.post-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.post-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.post-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.post-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.post-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .post-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.post-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.post-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.post-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.post-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.post-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.post-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.post-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.post-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .service-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-details-2 .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details-2 .service-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.service-details-2 .service-hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.service-details-2 .service-hero .hero-content .service-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-details-2 .service-hero .hero-content h2 {
  color: var(--contrast-color);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details-2 .service-hero .hero-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.service-details-2 .facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  margin-top: -3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.service-details-2 .facts-strip .fact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details-2 .facts-strip .fact-box i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details-2 .facts-strip .fact-box .fact-info {
  display: flex;
  flex-direction: column;
}

.service-details-2 .facts-strip .fact-box .fact-info .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details-2 .facts-strip .fact-box .fact-info strong {
  color: var(--heading-color);
  font-size: 1rem;
}

.service-details-2 .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-details-2 .main-column .description-block {
  margin-bottom: 2.5rem;
}

.service-details-2 .main-column .description-block h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.service-details-2 .main-column .description-block p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1rem;
}

.service-details-2 .main-column .description-block p:last-child {
  margin-bottom: 0;
}

.service-details-2 .main-column .features-grid h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details-2 .main-column .features-grid .features-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-details-2 .main-column .features-grid .feature-card {
  background: var(--surface-color);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details-2 .main-column .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-2 .main-column .features-grid .feature-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-details-2 .main-column .features-grid .feature-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details-2 .main-column .features-grid .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details-2 .main-column .features-grid .feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.service-details-2 .side-column .process-timeline {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.service-details-2 .side-column .process-timeline h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.service-details-2 .side-column .process-timeline .timeline-items {
  position: relative;
}

.service-details-2 .side-column .process-timeline .timeline-items::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-2 .side-column .process-timeline .timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.service-details-2 .side-column .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details-2 .side-column .process-timeline .timeline-item .timeline-marker {
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-details-2 .side-column .process-timeline .timeline-item .timeline-marker span {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.service-details-2 .side-column .process-timeline .timeline-item .timeline-content {
  padding-top: 0.25rem;
}

.service-details-2 .side-column .process-timeline .timeline-item .timeline-content h6 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details-2 .side-column .process-timeline .timeline-item .timeline-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
}

.service-details-2 .side-column .client-feedback {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.service-details-2 .side-column .client-feedback .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.2;
}

.service-details-2 .side-column .client-feedback .quote-icon i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.service-details-2 .side-column .client-feedback blockquote {
  color: var(--contrast-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 1;
}

.service-details-2 .side-column .client-feedback .client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details-2 .side-column .client-feedback .client-profile .client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.service-details-2 .side-column .client-feedback .client-profile .client-details strong {
  display: block;
  color: var(--contrast-color);
  font-size: 1rem;
}

.service-details-2 .side-column .client-feedback .client-profile .client-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

.service-details-2 .inquiry-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-2 .inquiry-section .inquiry-content h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details-2 .inquiry-section .inquiry-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-row .message-group {
  grid-column: span 3;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--background-color);
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .form-actions {
  margin-top: 1.25rem;
  text-align: right;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .btn-request {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .btn-request i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .btn-request:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.service-details-2 .inquiry-section .inquiry-form-wrapper .btn-request:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .service-details-2 .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details-2 .side-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-details-2 .side-column .process-timeline,
  .service-details-2 .side-column .client-feedback {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .service-details-2 .facts-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .service-details-2 .inquiry-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 2;
  }

  .service-details-2 .side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-details-2 .service-hero img {
    height: 300px;
  }

  .service-details-2 .service-hero .hero-content {
    padding: 2rem;
  }

  .service-details-2 .service-hero .hero-content h2 {
    font-size: 2rem;
  }

  .service-details-2 .service-hero .hero-content p {
    font-size: 1rem;
  }

  .service-details-2 .facts-strip {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .service-details-2 .facts-strip .fact-box {
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .service-details-2 .facts-strip .fact-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .service-details-2 .main-column .features-grid .features-wrapper {
    grid-template-columns: 1fr;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 1;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .form-actions {
    text-align: center;
  }

  .service-details-2 .inquiry-section .inquiry-form-wrapper .btn-request {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing .pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.pricing .pricing-card.highlighted {
  border: 2px solid var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.pricing .pricing-card.highlighted .card-header {
  background: var(--accent-color);
}

.pricing .pricing-card.highlighted .card-header .plan-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .card-header .plan-title,
.pricing .pricing-card.highlighted .card-header .plan-subtitle {
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
}

.pricing .pricing-card.highlighted:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.pricing .card-header {
  padding: 32px 28px 24px;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 6%, transparent);
}

.pricing .plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .plan-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.pricing .plan-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin: 0;
}

.pricing .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing .price-wrapper .amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing .price-wrapper .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
  padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -1px;
}

.pricing .billing-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
  display: none;
}

.pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricing .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.pricing .btn-pricing:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .trial-note {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-top: 12px;
}

.pricing .security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .pricing .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing .security-badges {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

.pricing .badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing .badge-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.pricing .badge-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .badge-item .badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .badge-item .badge-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.pricing .badge-item .badge-content span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.pricing .help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing .help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.pricing .help-links a i {
  font-size: 18px;
}

.pricing .help-links a:hover {
  color: color-mix(in srgb, var(--accent-color) 75%, black);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .pricing .help-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing .card-header {
    padding: 24px 20px 20px;
  }

  .pricing .card-body {
    padding: 24px 20px;
  }

  .pricing .price-wrapper .amount {
    font-size: 44px;
  }

  .pricing .price-wrapper.custom-pricing .custom-text {
    font-size: 30px;
  }

  .pricing .plan-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pricing .security-badges {
    margin-top: 48px;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  padding: 80px 0;
}

.contact-2 .contact-wrapper {
  background: var(--surface-color);
  border-radius: 24px;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 94%);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-2 .contact-form-section {
  padding: 60px 50px;
  background: var(--surface-color);
  height: 100%;
}

.contact-2 .contact-form-section .form-container {
  max-width: 100%;
}

.contact-2 .contact-form-section .form-header {
  margin-bottom: 40px;
}

.contact-2 .contact-form-section .form-header .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-2 .contact-form-section .form-header .header-badge i {
  font-size: 16px;
}

.contact-2 .contact-form-section .form-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-2 .contact-form-section .form-header p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-2 .contact-form-section .php-email-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-2 .contact-form-section .php-email-form .form-grid .full-width {
  grid-column: 1/-1;
}

.contact-2 .contact-form-section .php-email-form .input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-2 .contact-form-section .php-email-form .input-group .form-control {
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-2 .contact-form-section .php-email-form .input-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-2 .contact-form-section .php-email-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.contact-2 .contact-form-section .php-email-form .input-group select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.contact-2 .contact-form-section .php-email-form .input-group textarea.form-control {
  height: auto;
  resize: vertical;
  min-height: 120px;
}

.contact-2 .contact-form-section .php-email-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-2 .contact-form-section .php-email-form .form-actions .submit-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6366f1 20%) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-2 .contact-form-section .php-email-form .form-actions .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-section .php-email-form .form-actions .submit-btn:hover i {
  transform: translateX(2px);
}

.contact-2 .contact-form-section .php-email-form .form-actions .submit-btn i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.contact-2 .contact-form-section .php-email-form .form-actions .form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact-2 .contact-form-section .php-email-form .form-actions .form-note i {
  color: #10b981;
  font-size: 16px;
}

.contact-2 .contact-info-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  padding: 60px 40px;
  height: 100%;
}

.contact-2 .contact-info-section .info-card .card-header {
  margin-bottom: 32px;
}

.contact-2 .contact-info-section .info-card .card-header h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-2 .contact-info-section .info-card .card-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact-2 .contact-info-section .info-card .contact-items {
  margin-bottom: 40px;
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item:last-child {
  border-bottom: none;
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item .item-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item .item-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item .item-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item .item-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 4px;
}

.contact-2 .contact-info-section .info-card .contact-items .contact-item .item-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-info-section .info-card .quick-stats {
  display: flex;
  justify-content: space-between;
  background: var(--surface-color);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact-2 .contact-info-section .info-card .quick-stats .stat {
  text-align: center;
}

.contact-2 .contact-info-section .info-card .quick-stats .stat .stat-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.contact-2 .contact-info-section .info-card .quick-stats .stat .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.contact-2 .contact-info-section .info-card .social-section {
  text-align: center;
}

.contact-2 .contact-info-section .info-card .social-section h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.contact-2 .contact-info-section .info-card .social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-2 .contact-info-section .info-card .social-section .social-links .social-link {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-2 .contact-info-section .info-card .social-section .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-2 .contact-info-section .info-card .social-section .social-links .social-link i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact-2 .contact-form-section {
    padding: 50px 40px;
  }

  .contact-2 .contact-form-section .form-header h2 {
    font-size: 28px;
  }

  .contact-2 .contact-form-section .php-email-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-2 .contact-info-section {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .contact-2 {
    padding: 60px 0;
  }

  .contact-2 .contact-wrapper {
    border-radius: 20px;
    margin: 0 15px;
  }

  .contact-2 .contact-form-section {
    padding: 40px 30px;
  }

  .contact-2 .contact-form-section .form-header h2 {
    font-size: 26px;
  }

  .contact-2 .contact-form-section .php-email-form .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-2 .contact-form-section .php-email-form .form-actions .submit-btn {
    justify-content: center;
    width: 100%;
  }

  .contact-2 .contact-form-section .php-email-form .form-actions .form-note {
    justify-content: center;
  }

  .contact-2 .contact-info-section {
    padding: 40px 30px;
  }

  .contact-2 .contact-info-section .info-card .quick-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# Post Details 2 Section
--------------------------------------------------------------*/
.post-details-2 {
  padding-top: 115px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.post-details-2 .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-details-2 .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details-2 .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.post-details-2 .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-2 .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.post-details-2 .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.post-details-2 .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.post-details-2 .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .post-details-2 .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.post-details-2 .article-content {
  padding: 0 1rem;
}

.post-details-2 .article-content .content-header {
  margin-bottom: 3rem;
}

.post-details-2 .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details-2 .article-content .content-header .title {
    font-size: 2rem;
  }
}

.post-details-2 .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details-2 .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details-2 .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details-2 .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details-2 .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details-2 .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details-2 .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.post-details-2 .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.post-details-2 .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.post-details-2 .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-details-2 .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.post-details-2 .article-content .content p {
  margin-bottom: 1.5rem;
}

.post-details-2 .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.post-details-2 .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.post-details-2 .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details-2 .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details-2 .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.post-details-2 .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.post-details-2 .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.post-details-2 .article-content .content .highlight-box {
  background: color-mix(in srgb, #1d3e69, transparent 80%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.post-details-2 .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.post-details-2 .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details-2 .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.post-details-2 .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.post-details-2 .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.post-details-2 .article-content .content .content-grid {
  margin: 3rem 0;
}

.post-details-2 .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-details-2 .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.post-details-2 .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details-2 .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.post-details-2 .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.post-details-2 .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.post-details-2 .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details-2 .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.post-details-2 .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.post-details-2 .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.post-details-2 .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.post-details-2 .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-details-2 .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-2 .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details-2 .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.post-details-2 .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.post-details-2 .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details-2 .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service {
  padding-top: 62px;
  padding-bottom: 60px;
}

.terms-of-service .tos-header {
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 100%) 100%);
  border-radius: 20px;
  text-align: center;
}

.terms-of-service .tos-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-of-service .tos-header .header-content .badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--surface-color);
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-of-service .tos-header .header-content .badge-wrapper i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.terms-of-service .tos-header .header-content .badge-wrapper .last-updated {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-of-service .tos-header .header-content h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .terms-of-service .tos-header .header-content h2 {
    font-size: 2.2rem;
  }
}

.terms-of-service .tos-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.terms-of-service .tos-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .terms-of-service .tos-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

.terms-of-service .tos-sidebar h5 {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-service .tos-sidebar .terms-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .number {
  font-size: 0.85rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  min-width: 25px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .text {
  font-size: 0.95rem;
  font-weight: 500;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active .number {
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section {
  position: relative;
  margin-bottom: 45px;
  padding: 35px;
  background-color: var(--surface-color);
  border-radius: 16px;
  scroll-margin-top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

.terms-of-service .tos-content .content-section .section-number {
  position: absolute;
  top: -15px;
  left: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  margin-top: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}

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

.terms-of-service .tos-content .content-section .highlight-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-content .content-section .highlight-card .card-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.terms-of-service .tos-content .content-section .list-grid .list-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .list-grid .list-card i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .list-grid .list-card span {
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.terms-of-service .tos-content .content-section .warning-card {
  padding: 25px;
  background-color: color-mix(in srgb, #ffc107, transparent 94%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-of-service .tos-content .content-section .warning-card .warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header i {
  font-size: 1.5rem;
  color: #ffc107;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.terms-of-service .tos-content .content-section .warning-card p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 38px;
}

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

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

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card {
  padding: 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #dc3545, transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card p {
  margin: 0;
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 28px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-card h6 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

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

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

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

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li span {
  flex: 1;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .notice-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-card i {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.terms-of-service .tos-content .tos-contact .contact-wrapper {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 15%) 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--contrast-color);
  font-weight: 600;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn i {
  font-size: 1.1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn span {
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

  .terms-of-service .tos-sidebar,
  .terms-of-service .tos-contact {
    display: none;
  }

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}



@media (max-width: 1199px) {

  section,
  .section {
    text-align: center;
  }

  .about .action-buttons {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
}



.team {

  .team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .team-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 400px;

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

      .member-img {
        .social-overlay {
          opacity: 1;
        }

        img {
          transform: scale(1.05);
        }
      }
    }

    &.featured {
      transform: scale(1.03);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);

      .member-info {
        background: var(--accent-color);

        .member-badge {
          background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
          color: var(--contrast-color);
        }

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

        p {
          color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
        }
      }

      &:hover {
        transform: scale(1.03) translateY(-8px);
      }
    }

    .member-img {
      position: relative;
      overflow: hidden;

      img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .social-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, color-mix(in srgb, var(--accent-color) 90%, transparent) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 24px;
        opacity: 0;
        transition: opacity 0.4s ease;

        .social-links {
          display: flex;
          gap: 12px;

          a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--contrast-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 16px;
            transition: all 0.3s ease;

            &:hover {
              background: var(--accent-color);
              color: var(--contrast-color);
              transform: translateY(-4px);
            }
          }
        }
      }
    }

    .member-info {
      padding: 24px;
      text-align: center;
      transition: background 0.3s ease;

      .member-badge {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: color-mix(in srgb, var(--accent-color) 15%, transparent);
        color: var(--accent-color);
        margin-bottom: 12px;
      }

      h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--heading-color);
      }

      p {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color) 70%, transparent);
        margin: 0;
      }
    }
  }

  .team-stats {
    margin-top: 80px;

    .stats-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      padding: 40px 48px;
      background: var(--surface-color);
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

      @media (max-width: 768px) {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
      }
    }

    .stat-item {
      text-align: center;

      .stat-number {
        display: block;
        font-size: 42px;
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 8px;
      }

      .stat-label {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: color-mix(in srgb, var(--default-color) 60%, transparent);
      }
    }

    .stat-divider {
      width: 1px;
      height: 60px;
      background: color-mix(in srgb, var(--default-color) 15%, transparent);

      @media (max-width: 768px) {
        width: 80px;
        height: 1px;
      }
    }
  }

  @media (max-width: 992px) {
    padding: 80px 0;

    .team-card.featured {
      transform: none;

      &:hover {
        transform: translateY(-8px);
      }
    }

    .team-stats {
      margin-top: 60px;
    }
  }

  @media (max-width: 576px) {
    padding: 60px 0;

    .team-card {
      .member-info {
        padding: 20px;

        h4 {
          font-size: 18px;
        }
      }
    }

    .team-stats {
      margin-top: 48px;

      .stat-item {
        .stat-number {
          font-size: 36px;
        }

        .stat-label {
          font-size: 12px;
        }
      }
    }
  }
}