@charset "UTF-8";

/* Fonts */
:root {
  --default-font:
    "Open Sans", 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: "Noto Sans", sans-serif;
  --nav-font: "Raleway", 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: #37423b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0f2a44; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2d5bff; /* 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: #37423b; /* The default color of the main navmenu links */
  --nav-hover-color: #2d5bff; /* 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: #37423b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2d5bff; /* 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: #f7f5f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f1f2e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #223040;
  --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);
  --default-color: #37423b;
  --heading-color: #0f2a44;
  background: color-mix(in srgb, var(--background-color) 92%, transparent);
  padding: 16px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: all 0.3s ease;
  z-index: 997;
}

.header .logo {
  gap: 12px;
}

.header .logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 20px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-actions {
  margin: 0 16px;
}

.header .header-actions .action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.header .header-actions .action-link i {
  font-size: 18px;
  color: var(--accent-color);
}

.header .btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header .btn-quote:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .header .btn-quote {
    order: 2;
    margin-right: 12px;
    padding: 10px 20px;
  }

  .header .header-actions {
    display: none !important;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 576px) {
  .header .logo {
    gap: 8px;
  }

  .header .logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.scrolled .header {
  background: color-mix(in srgb, var(--background-color) 98%, transparent);
  box-shadow: 0 6px 20px
    color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.98);
  --default-color: #37423b;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* ==========================================================
   FOOTER
========================================================== */

.turner-footer {
  width: 100%;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--default-font);
}

/* ==========================================================
   PARTE SUPERIOR
========================================================== */

.footer-main {
  min-height: 136px;
  display: grid;
  grid-template-columns: 25% 50% 25%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* ==========================================================
   LOGO
========================================================== */

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}

.footer-logo a img {
  width: 100%;
  height: 35px;
}
/* ==========================================================
   MENU
========================================================== */

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 25px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* ==========================================================
   REDES SOCIAIS
========================================================== */

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

/* ==========================================================
   PARTE INFERIOR
========================================================== */

.footer-bottom {
  min-height: 190px;
  display: grid;
  grid-template-columns: 25% 50% 25%;
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.footer-copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-copyright span {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================
   INFORMAÇÃO
========================================================== */

.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
}

.footer-info p {
  max-width: 600px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.footer-info a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* ==========================================================
   POLÍTICAS
========================================================== */

.footer-alerts {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 7px;
  padding: 30px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-alerts a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}

.footer-alerts a:hover {
  text-decoration: underline;
}

.footer-alerts span {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1100px) {
  .footer-nav {
    gap: 18px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-logo {
    padding: 0 35px;
  }

  .footer-logo a {
    font-size: 44px;
  }
}

@media (max-width: 850px) {
  .footer-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-logo {
    min-height: 110px;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-nav {
    min-height: 90px;
    flex-wrap: wrap;
    padding: 20px;
  }

  .footer-social {
    min-height: 80px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    min-height: 100px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    align-items: center;
    text-align: center;
  }

  .footer-info {
    min-height: 150px;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-alerts {
    min-height: 120px;
    justify-content: center;
    text-align: center;
    border-left: none;
  }
}

@media (max-width: 576px) {
  .footer-logo a {
    font-size: 40px;
  }

  .footer-nav {
    gap: 15px 20px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-social {
    gap: 22px;
  }

  .footer-social a {
    font-size: 24px;
  }

  .footer-info p {
    font-size: 14px;
  }

  .footer-alerts {
    padding: 25px 20px;
  }

  .footer-alerts a {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #dadada;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.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: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #0f2a44;
}

.section-title .label-tag {
  display: inline-block;
  color: var(--accent-color);
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title p {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.stats .stats-content .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stats .stats-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.stats .stats-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 42, 68, 0.92) 0%,
    rgba(15, 42, 68, 0.75) 100%
  );
}

.hero .container {
  z-index: 2;
}

.hero .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge-label i {
  font-size: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

.hero h1 .accent {
  color: var(--accent-color);
}

.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.hero .hero-actions {
  margin-bottom: 80px;
}
.hero .hero-actions .btn-main {
  background: var(--accent-color);
  color: var(--contrast-color);

  padding: 10px 22px;
  border-radius: 4px;

  font-weight: 600;
  font-size: 14px;

  transition: all 0.3s ease;

  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-actions .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);

  padding: 8px 20px;
  border-radius: 4px;

  font-weight: 600;
  font-size: 14px;

  transition: all 0.3s ease;

  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;
}

.hero .hero-actions .btn-outline:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

.hero .hero-counters {
  background: var(--accent-color);
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero .hero-counters .counter-item {
  text-align: center;
}

.hero .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero .hero-actions .btn-main,
  .hero .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero .hero-counters {
    padding: 24px 16px;
  }

  .hero .hero-counters .counter-item h3 {
    font-size: 28px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-gallery {
  position: relative;
  padding-right: 80px;
  padding-bottom: 80px;
}

.about .about-gallery .gallery-main {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-gallery .gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about .about-gallery .gallery-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--background-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about .about-gallery .gallery-secondary img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about .about-gallery .experience-badge {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about .about-gallery .experience-badge .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about .about-gallery .experience-badge .text {
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  text-align: center;
  line-height: 1.2;
}

.about .about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about .about-content .section-label i {
  font-size: 16px;
}

.about .about-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about .about-content .lead {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about .about-highlights {
  margin-bottom: 32px;
}

.about .about-highlights .highlight-item .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about .about-highlights .highlight-item .highlight-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.about .about-highlights .highlight-item {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-highlights .highlight-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about .about-highlights .highlight-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about .about-highlights .highlight-item p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  margin: 0;
}

/* ===== Cards Missão / Visão / Compromisso ===== */
.about .mvv-card {
  display: flex;
  flex-direction: column;
  padding: 34px 26px;
  border-radius: 12px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.about .mvv-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.about .mvv-card .mvv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about .mvv-card .mvv-icon i {
  font-size: 34px;
  color: var(--accent-color);
}

.about .mvv-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about .mvv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (max-width: 991px) {
  .about .mvv-card {
    padding: 32px 28px;
  }
}

.about .about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about .about-cta .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .about-cta .btn-about:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .about-cta .btn-about:hover i {
  transform: translateX(4px);
}

.about .about-cta .btn-about i {
  transition: transform 0.3s ease;
}

.about .about-cta .btn-about-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.about .about-cta .btn-about-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .about .about-gallery {
    padding-right: 48px;
    padding-bottom: 48px;
    margin-bottom: 16px;
  }

  .about .about-gallery .experience-badge {
    right: 16px;
  }

  .about .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .about .about-gallery {
    padding-right: 32px;
    padding-bottom: 32px;
  }

  .about .about-gallery .experience-badge {
    width: 80px;
    height: 80px;
    right: 0;
  }

  .about .about-gallery .experience-badge .number {
    font-size: 22px;
  }

  .about .about-gallery .experience-badge .text {
    font-size: 9px;
  }

  .about .about-content h2 {
    font-size: 26px;
  }

  .about .about-cta {
    flex-direction: column;
  }

  .about .about-cta .btn-about,
  .about .about-cta .btn-about-outline {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .services-showcase {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: 0;
  min-height: 365px;
}

/*--------------------------------------------------------------
# Services Menu
--------------------------------------------------------------*/

.services .services-menu {
  padding: 0 5px;
  display: flex;
  height: 365px;
}

.services .services-menu-list {
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 6px;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Botões */

.services .service-tab {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 8px 28px;
  border: 0;
  outline: none;
  background: transparent;
  color: color-mix(in srgb, var(--contrast-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Número */

.services .service-tab .service-number {
  min-width: 28px;
  font-size: 12px;
  font-weight: 600;
}

/* Nome */

.services .service-tab .service-name {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

/* Ativo */

.services .service-tab.active {
  color: var(--contrast-color);
}

/* Pequena linha lateral */

.services .service-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--contrast-color);
  transform: translateY(-50%);
}

/* Hover */

.services .service-tab:hover {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Content
--------------------------------------------------------------*/

.services .services-content {
  height: 365px;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  background: transparent;
}

.services .service-content-inner {
  width: 100%;
  max-width: 400px;
}

/* Categoria */

.services .service-category {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* Título */

.services .service-content-inner h3 {
  margin: 0 0 42px;
  padding: 0;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--heading-color);
}

/* Descrição */

.services .service-content-inner p {
  margin: 0 0 30px;
  padding: 0;
  max-width: 330px;
  font-size: 16px;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* Link */

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-link i {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.services .service-link:hover {
  color: var(--accent-color);
}

.services .service-link:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------
# Services Image
--------------------------------------------------------------*/

.services .services-image {
  height: 365px;
  margin: 0 20px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.services .services-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}

/*--------------------------------------------------------------
# Mobile Dropdown
--------------------------------------------------------------*/

.services .services-select-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.services .services-select {
  width: 100%;
  height: 52px;
  padding: 0 45px 0 18px;
  appearance: none;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.services .services-select-wrapper > i {
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {
  .services .services-showcase {
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 350px;
  }

  .services .services-menu {
    height: 350px;
  }

  .services .services-content {
    height: 350px;
    padding: 35px;
  }

  .services .services-image {
    grid-column: 1 / -1;
    height: 300px;
    margin: 25px 20px 0;
  }

  .services .service-content-inner h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767px) {
  .services .services-showcase {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  /* Menu */

  .services .services-menu {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .services .services-menu-list {
    display: none;
  }

  .services .services-select-wrapper {
    display: block;
  }

  /* Conteúdo */

  .services .services-content {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 45px 25px;
  }

  .services .service-content-inner {
    max-width: none;
  }

  .services .service-content-inner h3 {
    margin-bottom: 25px;
    font-size: 28px;
  }

  .services .service-content-inner p {
    max-width: none;
    margin: 0 0 30px;
  }

  /* Imagem */

  .services .services-image {
    width: 100%;
    height: 260px;
    margin: 0;
    border-radius: 5px;
  }

  .services .services-image img {
    height: 260px;
  }
}

/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575px) {
  .services .services-content {
    min-height: 280px;
    padding: 35px 20px;
  }

  .services .service-content-inner h3 {
    font-size: 25px;
  }

  .services .service-content-inner p {
    font-size: 15px;
  }

  .services .services-image {
    height: 220px;
  }

  .services .services-image img {
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 80px 0;
}

.stats .stats-content .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stats .stats-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.stats .stats-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.stats .stats-content .stats-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.stats .stats-content .stats-link:hover {
  gap: 12px;
}

.stats .counter-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.stats .counter-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats .counter-card .counter-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .counter-card .counter-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .counter-card .counter-data h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.stats .counter-card .counter-data p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .stats .stats-content {
    margin-bottom: 16px;
  }

  .stats .stats-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .stats {
    padding: 48px 0;
  }

  .stats .counter-card {
    padding: 24px;
  }

  .stats .counter-card .counter-data h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .isotope-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.projects .isotope-filters li {
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.projects .isotope-filters li:hover,
.projects .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.projects .isotope-container .isotope-item {
  width: 33.333%;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: calc(var(--bs-gutter-y));
}

@media (max-width: 991px) {
  .projects .isotope-container .isotope-item {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .projects .isotope-container .isotope-item {
    width: 100%;
  }
}

.projects .project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.projects .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.projects .project-card:hover img {
  transform: scale(1.05);
}

.projects .project-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 42, 68, 0.95) 0%,
    rgba(15, 42, 68, 0.2) 100%
  );
}

.projects .project-card:hover .card-content .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-card:hover .card-actions .card-action {
  opacity: 1;
  transform: translateY(0);
}

.projects .project-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 42, 68, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  transition: background 0.4s ease;
}

.projects .project-card .card-content .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.projects .project-card .card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.projects .project-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  margin: 8px 0 0;
  line-height: 1.5;
}

.projects .project-card .card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-end;
}

.projects .project-card .card-action {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.projects .project-card .card-action:nth-child(2) {
  transition-delay: 0.1s;
}

.projects .project-card .card-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 991px) {
  .projects .project-card {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .projects .project-card {
    height: 240px;
  }

  .projects .project-card .card-content h3 {
    font-size: 18px;
  }

  .projects .project-card .card-actions .card-action {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.process .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.process .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.process .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.process .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (min-width: 992px) {
  .process .process-step::after {
    content: "";
    position: absolute;
    top: 110px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .process .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .process .process-step {
    padding: 24px 16px;
  }

  .process .process-step .step-number {
    font-size: 44px;
  }

  .process .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .process .process-step .step-icon i {
    font-size: 24px;
  }

  .process .process-step h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.team .member-card:hover .member-img .social-links {
  opacity: 1;
  bottom: 16px;
}

.team .member-img {
  position: relative;
  overflow: hidden;
}

.team .member-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team .member-img .social-links {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .member-img .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-img .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

.team .member-info {
  padding: 24px;
  text-align: center;
}

.team .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team .member-info span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-card .stars {
  margin-bottom: 16px;
}

.testimonials .testimonial-card .stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonials .testimonial-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .client-info {
  gap: 16px;
}

.testimonials .testimonial-card .client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-card .client-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonials .testimonial-card .client-info span {
  font-size: 14px;
  color: var(--accent-color);
}

.testimonials .swiper-pagination {
  margin-top: 32px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

@media (max-width: 575px) {
  .testimonials .testimonial-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 32px;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 16px;
  line-height: 0;
  color: var(--default-color);
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
}

.faq .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .faq .faq-item {
    padding: 16px 24px;
  }

  .faq .faq-item .faq-toggle {
    right: 24px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .info-block {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .call-to-action .info-block {
    padding-right: 0;
  }
}

.call-to-action .info-block .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.call-to-action .info-block h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .call-to-action .info-block h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .call-to-action .info-block h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .info-block > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.call-to-action .highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.call-to-action .highlight-cards .highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 25px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.call-to-action .highlight-cards .highlight-card:hover {
  transform: translateX(8px);
  border-left-color: var(--accent-color);
  box-shadow: 0 10px 35px
    color-mix(in srgb, var(--default-color), transparent 88%);
}

.call-to-action .highlight-cards .highlight-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card .card-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon {
  background: var(--accent-color);
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon i {
  color: var(--contrast-color);
}

.call-to-action .highlight-cards .highlight-card .card-body-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.call-to-action .highlight-cards .highlight-card .card-body-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.call-to-action .action-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.call-to-action .action-row .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-row .btn-get-started i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.call-to-action .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 55%);
}

.call-to-action .action-row .btn-get-started:hover i {
  transform: translateX(5px);
}

.call-to-action .action-row .phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-to-action .action-row .phone-block .phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: phone-ring 2s ease-in-out infinite;
}

.call-to-action .action-row .phone-block .phone-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.call-to-action .action-row .phone-block .phone-details .phone-label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.call-to-action .action-row .phone-block .phone-details .phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-to-action .action-row .phone-block .phone-details .phone-number:hover {
  color: var(--accent-color);
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(12deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(8deg);
  }

  40% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.call-to-action .image-block {
  position: relative;
  padding: 20px;
}

@media (max-width: 992px) {
  .call-to-action .image-block {
    padding: 10px;
  }
}

.call-to-action .image-block .main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px
    color-mix(in srgb, var(--default-color), transparent 82%);
}

.call-to-action .image-block .main-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.call-to-action .image-block .main-image:hover img {
  transform: scale(1.03);
}

.call-to-action .image-block .counter-badge {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 2;
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge {
    top: -5px;
    right: -5px;
  }
}

.call-to-action .image-block .counter-badge .counter-inner {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 45px
    color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .image-block .counter-badge .counter-inner .counter-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge .counter-inner .counter-value {
    font-size: 1.8rem;
  }
}

.call-to-action .image-block .counter-badge .counter-inner .counter-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.call-to-action .image-block .accent-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 35px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .call-to-action .image-block .accent-badge {
    left: 0;
    bottom: -5px;
  }
}

.call-to-action .image-block .accent-badge i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.call-to-action .image-block .accent-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-cards .info-card {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.contact .info-cards .info-card:last-child {
  margin-bottom: 0;
}

.contact .info-cards .info-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .info-cards .info-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-cards .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-cards .info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact .info-cards .info-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

.contact .contact-form-wrap {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrap input[type="text"],
.contact .contact-form-wrap input[type="email"],
.contact .contact-form-wrap input[type="tel"],
.contact .contact-form-wrap select,
.contact .contact-form-wrap textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 16px;
  border-radius: 4px;
  min-height: 48px;
}

.contact .contact-form-wrap input[type="text"]:focus,
.contact .contact-form-wrap input[type="email"]:focus,
.contact .contact-form-wrap input[type="tel"]:focus,
.contact .contact-form-wrap select:focus,
.contact .contact-form-wrap textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-form-wrap input[type="text"]::placeholder,
.contact .contact-form-wrap input[type="email"]::placeholder,
.contact .contact-form-wrap input[type="tel"]::placeholder,
.contact .contact-form-wrap select::placeholder,
.contact .contact-form-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.contact .contact-form-wrap select {
  appearance: auto;
}

.contact .contact-form-wrap .btn-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .contact-form-wrap .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .contact .contact-form-wrap {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .hero-banner .banner-slider .swiper-wrapper {
  height: auto !important;
}

.project-details .hero-banner .banner-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-details .hero-banner .banner-slider .slider-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 14px;
  border-radius: 30px;
}

.project-details .hero-banner .banner-slider .swiper-button-next,
.project-details .hero-banner .banner-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  margin: 0;
}

.project-details .hero-banner .banner-slider .swiper-button-next::after,
.project-details .hero-banner .banner-slider .swiper-button-prev::after {
  font-size: 14px;
  color: var(--contrast-color);
}

.project-details .hero-banner .banner-slider .swiper-pagination {
  position: static;
  width: auto;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.project-details .hero-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--default-color), transparent 10%),
    transparent
  );
  z-index: 5;
}

.project-details .hero-banner .banner-overlay .tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.project-details .hero-banner .banner-overlay h2 {
  color: var(--contrast-color);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.project-details .detail-tabs .nav-tabs {
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  gap: 4px;
}

.project-details .detail-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.project-details .detail-tabs .nav-tabs .nav-link i {
  font-size: 16px;
}

.project-details .detail-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .detail-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.project-details .detail-tabs .tab-content {
  padding: 28px 0;
}

.project-details .detail-tabs .tab-content .summary {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  font-weight: 500;
}

.project-details .detail-tabs .tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.project-details .photo-grid h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .photo-grid img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.3s;
  cursor: pointer;
}

.project-details .photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .sticky-sidebar {
  position: sticky;
  top: 100px;
}

.project-details .sticky-sidebar .meta-header {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--default-color) 30%)
  );
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.project-details .sticky-sidebar .meta-header .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .meta-header .status-badge i {
  font-size: 14px;
}

.project-details .sticky-sidebar .meta-header .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.project-details .sticky-sidebar .meta-header .meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .meta-header .meta-row i {
  font-size: 16px;
  opacity: 0.85;
}

.project-details .sticky-sidebar .specs-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .specs-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project-details .sticky-sidebar .specs-card .spec-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.project-details .sticky-sidebar .specs-card .spec-row:last-child {
  margin-bottom: 0;
}

.project-details .sticky-sidebar .specs-card .spec-item {
  flex: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-label {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.project-details .sticky-sidebar .capabilities-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .capabilities-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .capabilities-card .capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag i {
  color: var(--accent-color);
  font-size: 15px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.project-details .sticky-sidebar .client-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
}

.project-details .sticky-sidebar .client-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .client-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-details .sticky-sidebar .client-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .sticky-sidebar .client-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .client-card ul li:first-child {
  padding-top: 0;
}

.project-details .sticky-sidebar .client-card ul li .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.project-details .sticky-sidebar .client-card ul li .value {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.project-details .bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 2px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .bottom-nav .btn-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-details .bottom-nav .btn-nav i {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.project-details .bottom-nav .btn-nav .btn-text {
  display: flex;
  flex-direction: column;
}

.project-details .bottom-nav .btn-nav .btn-text .btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.project-details .bottom-nav .btn-nav .btn-text .btn-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--default-color);
  transition: color 0.3s;
}

.project-details .bottom-nav .btn-nav.prev-btn:hover i {
  transform: translateX(-4px);
}

.project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.next-btn {
  text-align: right;
}

.project-details .bottom-nav .btn-nav.next-btn:hover i {
  transform: translateX(4px);
}

.project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.center-btn {
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .bottom-nav .btn-nav.center-btn i {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn span {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px
    color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 992px) {
  .project-details .hero-banner .banner-overlay h2 {
    font-size: 24px;
  }

  .project-details .sticky-sidebar {
    position: static;
    margin-top: 20px;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .project-details .hero-banner .banner-overlay {
    padding: 30px 20px 18px;
  }

  .project-details .hero-banner .banner-overlay h2 {
    font-size: 20px;
  }

  .project-details .hero-banner .banner-overlay .tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .project-details .hero-banner .banner-slider .slider-controls {
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
  }

  .project-details .detail-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }

  .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
    font-size: 20px;
  }

  .project-details .sticky-sidebar .meta-header,
  .project-details .sticky-sidebar .specs-card,
  .project-details .sticky-sidebar .capabilities-card,
  .project-details .sticky-sidebar .client-card {
    padding: 20px;
  }

  .project-details .bottom-nav {
    flex-direction: column;
    gap: 16px;
  }

  .project-details .bottom-nav .btn-nav.center-btn {
    order: -1;
  }

  .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
  .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 32px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
}

.service-details
  .service-sidebar
  .service-overview
  .overview-content
  .cta-button
  .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details
  .service-sidebar
  .service-overview
  .overview-content
  .cta-button
  .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
}

.service-details .service-sidebar .key-benefits ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 32px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-info
  .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-info
  .info-row
  div
  span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 8px;
  overflow: hidden;
}

.service-details .service-content .image-gallery .service-details-slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-pagination {
  bottom: 20px;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-next,
.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--contrast-color);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-next::after,
.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-prev::after {
  font-size: 18px;
  color: var(--accent-color);
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-next:hover,
.service-details
  .service-content
  .image-gallery
  .service-details-slider
  .swiper-button-prev:hover {
  opacity: 1;
}

.service-details
  .service-content
  .image-gallery
  .service-details-slider:hover
  .swiper-button-next,
.service-details
  .service-content
  .image-gallery
  .service-details-slider:hover
  .swiper-button-prev {
  opacity: 0.8;
}

.service-details .service-content .section-header {
  margin-bottom: 24px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-content .section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 15px;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-content .service-features .feature-card:hover {
  border-color: var(--accent-color);
}

.service-details
  .service-content
  .service-features
  .feature-card:hover
  .icon-wrapper {
  background: var(--accent-color);
}

.service-details
  .service-content
  .service-features
  .feature-card:hover
  .icon-wrapper
  i {
  color: var(--contrast-color);
}

.service-details
  .service-content
  .service-features
  .feature-card
  .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.service-details
  .service-content
  .service-features
  .feature-card
  .icon-wrapper
  i {
  font-size: 24px;
  color: var(--accent-color);
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.service-details
  .service-content
  .implementation-steps
  .step-container
  .step:last-child {
  margin-bottom: 0;
}

.service-details
  .service-content
  .implementation-steps
  .step-container
  .step
  .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details
  .service-content
  .implementation-steps
  .step-container
  .step
  .step-content {
  flex: 1;
}

.service-details
  .service-content
  .implementation-steps
  .step-container
  .step
  .step-content
  h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details
  .service-content
  .implementation-steps
  .step-container
  .step
  .step-content
  p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .service-details .service-sidebar .service-overview .overview-content,
  .service-details .service-sidebar .key-benefits,
  .service-details .service-sidebar .contact-card .contact-info {
    padding: 24px;
  }

  .service-details .service-content .section-header h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service
  .tos-content
  .content-section
  .disclaimer-box
  ul
  li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "â€¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  );
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service
  .tos-contact
  .contact-box
  .contact-content
  .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "â€¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-404 .error-visual {
  text-align: center;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: 9rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--accent-color);
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
  color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.error-404 .error-visual .decorative-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.error-404 .error-visual .decorative-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background-color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.error-404 .error-info .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-404 .error-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.error-404 .error-info p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.error-404 .error-info .suggestions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.error-404 .error-info .suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.error-404 .error-info .suggestions li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.error-404 .error-info .action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-404 .error-info .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.error-404 .error-info .action-buttons .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-support:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (max-width: 992px) {
  .error-404 .error-visual {
    margin-bottom: 2rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 7rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }

  .error-404 .error-info {
    text-align: center;
  }

  .error-404 .error-info h2 {
    font-size: 1.85rem;
  }

  .error-404 .error-info .suggestions {
    display: inline-block;
    text-align: left;
  }

  .error-404 .error-info .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 5.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
  }

  .error-404 .error-info h2 {
    font-size: 1.6rem;
  }

  .error-404 .error-info p {
    font-size: 0.95rem;
  }

  .error-404 .error-info .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-info .action-buttons .btn-home,
  .error-404 .error-info .action-buttons .btn-support {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 4.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 72px;
    height: 72px;
    font-size: 2.2rem;
  }

  .error-404 .error-visual .decorative-dots {
    margin-top: 1.25rem;
  }

  .error-404 .error-visual .decorative-dots span {
    width: 8px;
    height: 8px;
  }

  .error-404 .error-info h2 {
    font-size: 1.35rem;
  }

  .error-404 .error-info .suggestions li {
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.latest-news {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.news-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.news-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 30px;
}

.news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dedede;
  opacity: 1;
}

.news-pagination .swiper-pagination-bullet-active {
  background: #006b4f;
}

.news-prev,
.news-next {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dedede;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-prev i,
.news-next i {
  font-size: 27px;
  color: #111;
}

.news-prev:hover,
.news-next:hover {
  background: #f5f5f5;
}

.latest-news-slider {
  width: 100%;
  overflow: visible;
}

.latest-news-slider .swiper-wrapper {
  align-items: flex-start;
}

.news-card {
  width: 100%;
}

.news-image {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.04);
}

.news-content {
  padding-top: 31px;
}

.news-category {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #444;
}

.news-content h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.48;
  color: #111;
}

.news-meta {
  display: flex;
  gap: 7px;
  margin-top: 25px;
  font-size: 14px;
  color: #444;
}

/* Desktop */

@media (min-width: 1200px) {
  .latest-news-slider {
    padding-right: 120px;
  }
}

/* Tablet */

@media (max-width: 1199px) {
  .latest-news-slider {
    padding-right: 60px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .latest-news {
    padding: 60px 0;
  }

  .news-header {
    margin-bottom: 35px;
  }

  .news-header h2 {
    font-size: 25px;
  }

  .news-pagination {
    display: none;
  }

  .news-prev,
  .news-next {
    width: 44px;
    height: 44px;
  }

  .latest-news-slider {
    padding-right: 30px;
  }

  .news-image {
    height: 200px;
  }

  .news-content h3 {
    font-size: 19px;
  }
}
/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

/* =========================================================
   SLIDES
========================================================= */

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.06);

  transition:
    opacity 1s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1s ease;

  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;

  transform: scale(1);

  z-index: 2;
}

/* =========================================================
   BACKGROUND
========================================================= */

.hero-bg {
  position: absolute;
  inset: 0;

  overflow: hidden;

  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition: transform 7s ease;
}

.hero-slide.active .hero-bg img {
  transform: scale(1.08);
}

/* =========================================================
   OVERLAY
========================================================= */

.hero-bg::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.58)
  );
}

/* =========================================================
   CONTEÚDO
========================================================= */

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-slide h1 {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease 0.2s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hero-slide p {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.8s ease 0.35s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hero-slide .hero-actions {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.8s ease 0.5s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-actions {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   BOTÃO ANTERIOR
========================================================= */

.hero-prev,
.hero-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.25);

  color: #fff;

  cursor: pointer;

  z-index: 10;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hero-prev {
  left: 35px;
}

.hero-next {
  right: 35px;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(0, 0, 0, 0.55);

  border-color: rgba(255, 255, 255, 0.7);
}

.hero-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.hero-next:hover {
  transform: translateY(-50%) translateX(4px);
}

/* =========================================================
   DOTS
========================================================= */

.hero-dots {
  position: absolute;

  bottom: 45px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 10px;

  z-index: 10;
}

.hero-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-dot:hover {
  transform: scale(1.2);
}

.hero-dot.active {
  width: 28px;

  border-radius: 20px;

  background: #fff;
}

/* =========================================================
   LOADER
========================================================= */

.hero-loader {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #fff;

  z-index: 20;

  overflow: hidden;
}

.hero-loader-progress {
  width: 0;
  height: 100%;

  background: var(--accent-color);

  transform-origin: left;

  opacity: 0;
}

.hero-loader-progress.loading {
  opacity: 1;

  animation: heroLoading 9s linear forwards;
}

@keyframes heroLoading {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {
  .hero {
    min-height: 80vh;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 75vh;
  }

  .hero-prev,
  .hero-next {
    width: 42px;
    height: 42px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .hero-dots {
    bottom: 30px;
  }

  .hero-slide h1 {
    font-size: 2.2rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 72vh;
  }

  .hero-prev,
  .hero-next {
    width: 38px;
    height: 38px;
  }

  .hero-prev {
    left: 8px;
  }

  .hero-next {
    right: 8px;
  }

  .hero-slide h1 {
    font-size: 1.9rem;
  }
}
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.project-filters li {
  padding: 10px 24px;

  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;

  font-size: 14px;
  cursor: pointer;

  transition: 0.3s;
}

.project-filters li.filter-active,
.project-filters li:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.project-track {
  display: none;
  position: relative;
}

.project-track.active {
  display: block;
}

.project-swiper {
  padding: 4px 4px 40px;
}

.project-swiper .swiper-slide {
  height: auto;
}

.project-prev,
.project-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: #fff;

  cursor: pointer;
  z-index: 5;

  transition: 0.3s;
}

.project-prev {
  left: -22px;
}

.project-next {
  right: -22px;
}

.project-prev:hover,
.project-next:hover {
  background: var(--accent-color);
  color: #fff;
}

.project-prev.swiper-button-disabled,
.project-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* =========================================================
   PRELOADER
   ========================================================= */

#page-preloader {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;

  transition:
    opacity 0.6s ease-out,
    visibility 0.6s ease-out;
}

#page-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.preload-tetrominos {
  position: absolute;

  left: 50%;
  top: 60%;

  transform: translate(-109px, -94px);

  -o-transform: translate(-109px, -94px);
  -ms-transform: translate(-109px, -94px);
  -webkit-transform: translate(-109px, -94px);
  -moz-transform: translate(-109px, -94px);
}

/* =========================================================
   IMAGENS
   ========================================================= */

.preload-tetromino {
  width: 45px;
  height: 45px;
  position: absolute;
  background-image: url("../img/logo/HP_LLOGOTIPO_HP_FAVICONPRO.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  transition: all 0.35s ease;

  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
}

/* =========================================================
   IMAGEM 1
   ========================================================= */

.preload-box1 {
  animation: preload-tetromino1 1.73s ease-out infinite;

  -o-animation: preload-tetromino1 1.73s ease-out infinite;
  -ms-animation: preload-tetromino1 1.73s ease-out infinite;
  -webkit-animation: preload-tetromino1 1.73s ease-out infinite;
  -moz-animation: preload-tetromino1 1.73s ease-out infinite;
}

/* =========================================================
   IMAGEM 2
   ========================================================= */

.preload-box2 {
  animation: preload-tetromino2 1.73s ease-out infinite;

  -o-animation: preload-tetromino2 1.73s ease-out infinite;
  -ms-animation: preload-tetromino2 1.73s ease-out infinite;
  -webkit-animation: preload-tetromino2 1.73s ease-out infinite;
  -moz-animation: preload-tetromino2 1.73s ease-out infinite;
}

/* =========================================================
   IMAGEM 3
   ========================================================= */

.preload-box3 {
  animation: preload-tetromino3 1.73s ease-out infinite;

  -o-animation: preload-tetromino3 1.73s ease-out infinite;
  -ms-animation: preload-tetromino3 1.73s ease-out infinite;
  -webkit-animation: preload-tetromino3 1.73s ease-out infinite;
  -moz-animation: preload-tetromino3 1.73s ease-out infinite;

  z-index: 2;
}

/* =========================================================
   IMAGEM 4
   ========================================================= */

.preload-box4 {
  animation: preload-tetromino4 1.73s ease-out infinite;

  -o-animation: preload-tetromino4 1.73s ease-out infinite;
  -ms-animation: preload-tetromino4 1.73s ease-out infinite;
  -webkit-animation: preload-tetromino4 1.73s ease-out infinite;
  -moz-animation: preload-tetromino4 1.73s ease-out infinite;
}

/* =========================================================
   ANIMAÇÃO 1
   ========================================================= */

@keyframes preload-tetromino1 {
  0%,
  40% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(47px, -26px);
  }

  60%,
  100% {
    transform: translate(94px, 0);
  }
}

/* =========================================================
   ANIMAÇÃO 2
   ========================================================= */

@keyframes preload-tetromino2 {
  0%,
  20% {
    transform: translate(94px, 0);
  }

  40%,
  100% {
    transform: translate(140px, 26px);
  }
}

/* =========================================================
   ANIMAÇÃO 3
   ========================================================= */

@keyframes preload-tetromino3 {
  0% {
    transform: translate(140px, 26px);
  }

  20%,
  60% {
    transform: translate(94px, 53px);
  }

  90%,
  100% {
    transform: translate(47px, 26px);
  }
}

/* =========================================================
   ANIMAÇÃO 4
   ========================================================= */

@keyframes preload-tetromino4 {
  0%,
  60% {
    transform: translate(47px, 26px);
  }

  90%,
  100% {
    transform: translate(0, 0);
  }
}

.mb-n4 {
  margin-bottom: -90px;
}

.mb-n3 {
  margin-bottom: -70px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  transition: 0.3s ease;
}

.video-link i {
  font-size: 24px;
}

.video-link:hover {
  color: var(--accent-color);
}

.video-link:hover i {
  transform: scale(1.1);
}

.video-link i {
  transition: transform 0.3s ease;
}

#videoModal .modal-dialog {
  max-width: 1000px;
}

#videoModal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

#videoModal .modal-header {
  padding: 15px 20px;
}

#videoModal .modal-body {
  background: #000;
}

#videoModal video {
  width: 100%;
  height: 100%;
  display: block;
}

#videoModal .modal-dialog {
  max-width: 900px;
  margin: 1rem auto;
}

#videoModal .modal-content {
  background: #000;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

#videoModal .modal-header {
  padding: 10px 15px;
  min-height: auto;
  background: #000;
}

#videoModal .modal-body {
  padding: 0;
  background: #000;
}

#videoModal .ratio {
  height: auto;
}

#videoModal video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

/*--------------------------------------------------------------
# Team Section Slider
--------------------------------------------------------------*/
.team .team-slider {
  position: relative;
  padding-bottom: 55px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-slider .swiper-slide {
  height: auto;
}

.team .team-slider .member-card {
  height: 100%;
}

/* Controles */
.team .team-slider .slider-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 14px;
  border-radius: 30px;
}

/* Botões */
.team .team-slider .swiper-button-next,
.team .team-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  margin: 0;
}

.team .team-slider .swiper-button-next::after,
.team .team-slider .swiper-button-prev::after {
  font-size: 14px;
  color: var(--contrast-color);
}

/* Paginação */
.team .team-slider .swiper-pagination {
  position: static;
  width: auto;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  opacity: 1;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .featured-posts .blog-post-item {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .featured-posts .blog-post-item {
    height: 240px;
  }
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--contrast-color);
  z-index: 2;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content {
    padding: 18px;
  }
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 5px;
  font-size: 16px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
  margin-right: 0;
}

.featured-posts .blog-post-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content h2 {
    font-size: 17px;
  }
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}

/* End card blog */

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-top: 20px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(
    0deg,
    color-mix(in srgb, var(--default-color), transparent 10%) 0%,
    transparent 100%
  );
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(
    0deg,
    color-mix(in srgb, var(--default-color), transparent 20%) 0%,
    transparent 100%
  );
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}
/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .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);
}

.blog-details .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;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .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%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details
  .article-content
  .content-header
  .author-info
  .author-details
  .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details
  .article-content
  .content-header
  .author-info
  .author-details
  .info
  h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details
  .article-content
  .content-header
  .author-info
  .author-details
  .info
  .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details
  .article-content
  .content-header
  .author-info
  .post-meta
  .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .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);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .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%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .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;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .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);
}

.blog-details .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;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .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;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .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;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .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;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-box {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-author .author-box:hover {
  transform: translateY(-5px);
}

.blog-author .author-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-author .author-img:hover {
  transform: scale(1.05);
}

.blog-author .author-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  margin: 0 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-author .author-social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.blog-author .author-social-links a.linkedin:hover {
  background-color: #0077b5;
}

.blog-author .author-social-links a.twitter:hover {
  background-color: #000000;
}

.blog-author .author-social-links a.github:hover {
  background-color: #333333;
}

.blog-author .author-social-links a.facebook:hover {
  background-color: #1877f2;
}

.blog-author .author-social-links a.instagram:hover {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.blog-author .author-content {
  padding-left: 1rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-content {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
}

.blog-author .author-content .author-name {
  font-size: 1.75rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-content .author-title {
  display: inline-block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.5rem;
  font-family: var(--heading-font);
}

.blog-author .author-content .author-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 1rem 0;
}

.blog-author .author-content .author-website {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .blog-author .author-content .author-website {
    justify-content: center;
  }
}

.blog-author .author-content .author-website a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-author .author-content .author-website a i {
  font-size: 1.1rem;
}

.blog-author .author-content .author-website a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateX(3px);
}

.blog-author .author-content .author-website .more-posts {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-bottom: 30px;
}

.blog-comments .section-header {
  margin-bottom: 40px;
}

.blog-comments .section-header h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  font-size: 24px;
  font-weight: 500;
}

.blog-comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.blog-comments .comment-card.reply {
  margin-left: 48px;
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
}

@media (min-width: 768px) {
  .blog-comments .comment-card.reply {
    margin-left: 85px;
  }
}

.blog-comments .reply-thread {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-header {
  margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-comments .comment-header .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
  font-size: 13px;
}

.blog-comments .comment-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 20px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-comments .section-header {
    margin-bottom: 30px;
  }

  .blog-comments .section-header h3 {
    font-size: 28px;
  }

  .blog-comments .section-header h3 .comment-count {
    font-size: 20px;
  }

  .blog-comments .comment-card {
    padding: 20px;
  }

  .blog-comments .comment-card.reply {
    margin-left: 35px;
  }

  .blog-comments .comment-header .user-info img {
    width: 40px;
    height: 40px;
  }

  .blog-comments .comment-header .user-info .meta .name {
    font-size: 15px;
  }

  .blog-comments .comment-header .user-info .meta .date {
    font-size: 13px;
  }

  .blog-comments .comment-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding-top: 30px;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Author Profile Section
--------------------------------------------------------------*/
.author-profile .author-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-card .author-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile .author-card .author-info {
  text-align: center;
}

.author-profile .author-card .author-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.author-profile .author-card .author-info .designation {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.author-profile .author-card .author-info .author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-stats {
  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%);
  padding: 1rem 0;
}

.author-profile .author-card .author-stats .stat-item h4 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.author-profile .author-card .author-stats .stat-item p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-card .social-links {
  margin-top: 1.5rem;
}

.author-profile .author-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.author-profile .author-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.author-profile .author-card .social-links a i {
  font-size: 1rem;
}

.author-profile .author-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-content .content-header {
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.author-profile .author-content .content-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.author-profile .author-content .content-body .expertise-areas h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.author-profile .author-content .content-body .expertise-areas .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.author-profile .author-content .content-body .expertise-areas .tags span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .expertise-areas
  .tags
  span:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.author-profile .author-content .content-body .featured-articles h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-body .featured-articles .article-card {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card:hover {
  transform: translateY(-5px);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img {
  height: 200px;
  overflow: hidden;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img:hover
  img {
  transform: scale(1.1);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details {
  padding: 1.25rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5
  a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5
  a:hover {
  color: var(--accent-color);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta
  span {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta
  span
  i {
  margin-right: 0.35rem;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .author-profile .author-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .author-profile .featured-articles .article-card {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title
  .breadcrumbs
  .breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section .featured-post {
  margin-bottom: 40px;
}

.category-section .featured-post .post-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.category-section .featured-post .category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-section .featured-post .post-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.category-section .featured-post .author-meta .author-name {
  color: var(--heading-color);
  font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
  content: "-";
  margin: 0 8px;
}

.category-section .featured-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.category-section .featured-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .featured-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.category-section .list-post .post-img {
  flex: 0 0 100px;
  border-radius: 8px;
  overflow: hidden;
}

.category-section .list-post .post-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.category-section .list-post .post-content {
  flex: 1;
}

.category-section .list-post .post-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

.category-section .list-post .title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.category-section .list-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .list-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post .post-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
  content: "â€¢";
  margin: 0 8px;
}

@media (max-width: 992px) {
  .category-section .featured-post .title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .category-section .list-post .post-img {
    flex: 0 0 80px;
  }

  .category-section .list-post .post-img img {
    width: 80px;
    height: 80px;
  }

  .category-section .list-post .title {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 2rem;
  }

  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.latest-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.latest-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.latest-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.latest-posts .title a:hover {
  color: var(--accent-color);
}

.latest-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.latest-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.latest-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.call-to-action .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.call-to-action .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.call-to-action .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .call-to-action .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .call-to-action .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .call-to-action .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Category Postst Section
--------------------------------------------------------------*/
.category-postst article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.category-postst .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.category-postst .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.category-postst .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-postst .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.category-postst .title a:hover {
  color: var(--accent-color);
}

.category-postst .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.category-postst .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.category-postst .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Search Results Posts Section
--------------------------------------------------------------*/
.search-results-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.search-results-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.search-results-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.search-results-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.search-results-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.search-results-posts .title a:hover {
  color: var(--accent-color);
}

.search-results-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.search-results-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.search-results-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-3 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-3 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.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%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Categories
--------------------------------------------------------------*/

.categories-widget #blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget .category-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

/* -------------------------------------------------------------
   Botão da categoria
------------------------------------------------------------- */

.categories-widget .category-toggle {
  width: 100%;
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 2px;

  border: 0;
  outline: none;

  background: transparent;

  color: var(--default-color);

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;

  text-align: left;

  cursor: pointer;

  transition:
    color 0.25s ease,
    padding 0.25s ease;
}

/* Texto da categoria */

.categories-widget .category-toggle > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Quantidade */

.categories-widget .category-count {
  font-size: 12px;
  font-weight: 500;

  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

/* Ícone */

.categories-widget .category-toggle i {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: color-mix(in srgb, var(--accent-color), transparent 92%);

  color: var(--accent-color);

  font-size: 11px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* Hover */

.categories-widget .category-toggle:hover {
  color: var(--accent-color);
}

.categories-widget .category-toggle:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* -------------------------------------------------------------
   Categoria aberta
------------------------------------------------------------- */

.categories-widget .category-item.active > .category-toggle {
  color: var(--accent-color);
}

/* Rodar seta */

.categories-widget .category-item.active .category-toggle i {
  transform: rotate(180deg);

  background: var(--accent-color);

  color: var(--contrast-color);
}

/* -------------------------------------------------------------
   Sublista
------------------------------------------------------------- */

.categories-widget .category-posts {
  list-style: none;

  margin: 0;
  padding: 0 0 0 12px;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  visibility: hidden;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

/* Só aparece quando clicar */

.categories-widget .category-item.active .category-posts {
  max-height: 600px;

  padding-bottom: 10px;

  opacity: 1;

  visibility: visible;
}

/* -------------------------------------------------------------
   Títulos dos blogs
------------------------------------------------------------- */

.categories-widget .category-posts li {
  position: relative;

  margin: 0;
  padding: 7px 8px 7px 17px;
}

/* Linha vertical */

.categories-widget .category-posts li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 2px;

  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* Pequeno ponto */

.categories-widget .category-posts li::after {
  content: "";

  position: absolute;

  left: -2px;
  top: 15px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--accent-color);
}

/* Link */

.categories-widget .category-posts a {
  display: block;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  font-size: 13px;

  line-height: 1.5;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

/* Hover título */

.categories-widget .category-posts a:hover {
  color: var(--accent-color);

  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Recent Posts Pagination
--------------------------------------------------------------*/

.recent-posts-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 22px;
  padding-top: 16px;

  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

/* -------------------------------------------------------------
   Botões
------------------------------------------------------------- */

.recent-posts-pagination .pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  min-width: 92px;
  height: 34px;

  padding: 0 12px;

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

  border-radius: 5px;

  background: var(--surface-color);

  color: var(--default-color);

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

/* Ícones */

.recent-posts-pagination .pagination-btn i {
  font-size: 11px;

  transition: transform 0.25s ease;
}

/* Hover */

.recent-posts-pagination .pagination-btn:not(:disabled):hover {
  background: var(--accent-color);

  border-color: var(--accent-color);

  color: var(--contrast-color);
}

/* Movimento dos ícones */

.recent-posts-pagination .pagination-btn:first-child:not(:disabled):hover i {
  transform: translateX(-3px);
}

.recent-posts-pagination .pagination-btn:last-child:not(:disabled):hover i {
  transform: translateX(3px);
}

/* -------------------------------------------------------------
   Botão desativado
------------------------------------------------------------- */

.recent-posts-pagination .pagination-btn:disabled {
  opacity: 0.4;

  cursor: not-allowed;

  background: transparent;
}

/* -------------------------------------------------------------
   Indicador da página
------------------------------------------------------------- */

.recent-posts-pagination .pagination-page {
  min-width: 48px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  background: color-mix(in srgb, var(--accent-color), transparent 92%);

  color: var(--accent-color);

  font-size: 12px;
  font-weight: 700;
}

/* ===== RESET & BASE ===== */

/* ===== NAVBAR ===== */
/* Menu em camada própria: ocupa o topo ANTES da hero (sem sobreposição) */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: var(--background-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Sobre fundo claro → letras escuras */
.navbar a {
  color: var(--nav-color);
  text-decoration: none;
}

.navbar .logo {
  color: var(--nav-color);
}

.navbar .logo-text em {
  color: var(--default-color);
  opacity: 0.6;
}

.navbar .nav-link .nav-num {
  color: var(--default-color);
  opacity: 0.5;
}

.navbar .btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--nav-color);
}

.navbar .menu-toggle {
  border-color: rgba(0, 0, 0, 0.15);
}

.navbar .menu-toggle::before,
.navbar .menu-toggle::after {
  background: var(--accent-color);
}

.navbar.scrolled {
  padding: 0.9rem 0;
  background: var(--background-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled a {
  color: var(--nav-color);
}

.navbar.scrolled .logo-text em {
  color: var(--default-color);
  opacity: 0.6;
}

.navbar.scrolled .nav-link .nav-num {
  color: var(--default-color);
  opacity: 0.5;
}

.navbar.scrolled .btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--nav-color);
}

.navbar.scrolled .menu-toggle {
  border-color: rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .menu-toggle::before,
.navbar.scrolled .menu-toggle::after {
  background: var(--accent-color);
}

/* ===== CONTAINER (Bootstrap) ===== */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo-number {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.7rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-text em {
  font-weight: 400;
}

.logo .logo-text img {
  width: 100%;
  height: 35px;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link .nav-num {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.7rem;
  margin-right: 0.4rem;
  vertical-align: super;
}

.nav-link.active .nav-num {
  color: var(--accent-color) !important;
  opacity: 1 !important;
}

/* ===== NAV ACTIONS ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== BOTÃO DESKTOP ===== */
.desktop-only {
  display: inline-flex;
}

/* ===== MENU TOGGLE (mobile) ===== */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  transition: all 0.3s ease;
}

.menu-toggle::before {
  transform: translate(-50%, -50%);
}

.menu-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle:hover {
  background: var(--nav-color);
  border-color: var(--nav-color);
}

.menu-toggle:hover::before,
.menu-toggle:hover::after {
  background: var(--contrast-color);
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 480px;
  background: var(--nav-mobile-background-color);
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  padding: 6rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-label {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.7rem;
  color: var(--default-color);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.2rem 0;
  text-decoration: none;
  color: var(--nav-color);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.sidebar-link .nav-num {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--default-color);
  opacity: 0.5;
}

.sidebar-link:hover {
  color: var(--nav-hover-color);
  padding-left: 1rem;
}

.sidebar-link.active {
  color: var(--nav-hover-color);
}

.sidebar-link.active .nav-num {
  color: var(--accent-color);
  opacity: 1;
}

/* ===== CTA no menu mobile ===== */
.sidebar-cta {
  color: var(--nav-color);
  border-bottom: 2px solid var(--nav-color);
}

.sidebar-cta .nav-num {
  color: var(--accent-color);
  opacity: 1;
}

.sidebar-cta:hover {
  color: var(--accent-color);
  padding-left: 1rem;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-footer p {
  font-size: 0.8rem;
  color: var(--default-color);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-footer a {
  display: block;
  margin-top: 0.5rem;
  color: var(--nav-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.sidebar-footer a:hover {
  color: var(--nav-hover-color);
}

/* ===== OVERLAY ===== */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 997;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  /* Esconde o botão "Iniciar" no mobile */
  .desktop-only {
    display: none !important;
  }

  .sidebar {
    padding: 6rem 1.5rem 2rem;
  }
  .sidebar-header {
    left: 1.5rem;
    right: 1.5rem;
  }

  /* Ajuste para telas menores */
  .sidebar-link {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .sidebar-link {
    font-size: 1.1rem;
  }
}

.map-section {
  padding: 20px 0;
  margin-top: -30px;
}

.map-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .map-container iframe {
    height: 250px;
  }
}

/* CTA about */

.cta-section {
  padding: 80px 20px;

  position: relative;
}

.cta-content {
  padding: 40px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 10px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.cta-buttons .btn {
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
}

/* Botão Contacte-nos */
.cta-buttons .btn {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* Hover */
.cta-buttons .btn:hover {
  color: #fff;
  border-color: var(--accent-color);

  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
}

/* Clique */
.cta-buttons .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.18);
}

.cta-buttons .btn-outline-primary {
  border-color: var(--accent-color);
  color: #ffffff;
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
}

.cta-buttons .btn i {
  margin-right: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-content {
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 100%;
  }
}
