@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  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: #707783; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #00143b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #01aaf2; /* 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: #f7f8f8; /* 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: #00143b;  /* The default color of the main navmenu links */
  --nav-hover-color: #01aaf2; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #020923; /* 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: #00143b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #01aaf2; /* 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: #ffffff;
  --default-color: #707783;
  --heading-color: #00143b;
  --accent-color: #01aaf2;
  --surface-color: #f7f8f8;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #020923;
  --default-color: #c0c5ce;
  --heading-color: #ffffff;
  --accent-color: #00c8fd;
  --surface-color: #00143b;
  --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 {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 76px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.header .logo img,
.header .logo .brand-logo-img {
  height: 54px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}

.header .logo .brand-name {
  margin-left: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.3px;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(8px);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 1199px) {
  .header .branding {
    min-height: 68px;
  }

  .header .logo img,
  .header .logo .brand-logo-img {
    height: 48px;
    max-width: 230px;
  }

  .header .logo .brand-name {
    font-size: 22px;
    transform: translateY(7px);
  }
}

@media (max-width: 575px) {
  .header .topbar {
    height: auto;
    min-height: 40px;
    padding: 6px 0;
    font-size: 13px;
  }

  .header .topbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header .topbar .contact-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 12px;
  }

  .header .topbar .contact-info i {
    margin-left: 0 !important;
    font-size: 13px;
  }

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
    padding-left: 4px;
  }

  .header .branding {
    min-height: 64px;
    padding: 8px 0;
  }

  .header .logo img,
  .header .logo .brand-logo-img {
    height: 42px;
    max-width: 190px;
  }

  .header .logo .brand-name {
    margin-left: 7px;
    font-size: 20px;
    transform: translateY(5px);
  }
}

@media (max-width: 375px) {
  .header .topbar .contact-info {
    column-gap: 8px;
  }

  .header .topbar .contact-info i {
    font-size: 12px;
  }

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 12px;
  }

  .header .branding {
    min-height: 60px;
    padding: 7px 0;
  }

  .header .logo img,
  .header .logo .brand-logo-img {
    height: 38px;
    max-width: 170px;
  }

  .header .logo .brand-name {
    margin-left: 6px;
    font-size: 18px;
    transform: translateY(4px);
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0;
  min-height: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-left: auto;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 13px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    margin-left: auto;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 14px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #00143B;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 200, 253, 0.12);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #EAF6FF;
    padding: 13px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(0, 200, 253, 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #00C8FD;
    color: #00143B;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #00C8FD;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #00C8FD;
    color: #00143B;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #061B4A;
    border: 1px solid rgba(0, 200, 253, 0.15);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(255, 255, 255, 0.04);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(255, 255, 255, 0.04);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 20, 59, 0.72);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-top {
  padding: 56px 0 38px;
}

.footer .footer-about .logo {
  text-decoration: none;
  margin-bottom: 18px;
}

.footer .footer-about .logo .sitename {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.footer .footer-about p {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 360px;
}

.footer .footer-about .footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer .footer-about .footer-contact p i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer .footer-about .footer-contact p a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-about .footer-contact p a:hover {
  color: var(--accent-color);
}

.footer .footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}

.footer .footer-links ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer .footer-cta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.footer .footer-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer .footer-cta .footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.footer .footer-cta .footer-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.footer .footer-bottom {
  padding: 22px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright {
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.92rem;
}

.footer .copyright .sitename {
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding: 44px 0 28px;
  }

  .footer .footer-about p {
    max-width: 100%;
  }

  .footer .footer-cta .footer-button {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  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;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .content {
  padding: 82px 0 72px;
}

.hero .hero-content .content .hero-badge {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  max-width: 660px;
}

.hero .hero-content .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.hero .hero-content .content .cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .hero-content .content .cta-group .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .content .cta-group .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .content .cta-group .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.hero .hero-content .content .cta-group .btn-secondary i {
  font-size: 1.1rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
  color: var(--accent-color);
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
  transform: translateX(4px);
}

.hero .hero-content .content .hero-support-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1.25rem;
  max-width: 560px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero .hero-content .content .hero-support-note i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.hero .hero-content .hero-image {
  position: relative;
  padding: 82px 0 72px;
}

.hero .hero-content .hero-image img {
  border-radius: 14px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero .hero-content .hero-image .service-card {
  position: absolute;
  bottom: 20px;
  left: 16px;
  max-width: 270px;
  background: var(--surface-color);
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  backdrop-filter: blur(10px);
}

.hero .hero-content .hero-image .service-card .service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.hero .hero-content .hero-image .service-card .service-card-header i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero .hero-content .hero-image .service-card .service-card-header span {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.hero .hero-content .hero-image .service-card .service-card-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero .hero-features {
  background: var(--surface-color);
  padding: 3.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-features .feature-item {
  height: 100%;
  padding: 1.75rem;
  border-radius: 14px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-features .feature-item .icon {
  width: 58px;
  height: 58px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item .icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.hero .hero-features .feature-item h4 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.hero .hero-features .feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.hero .hero-features .feature-item:hover .icon {
  background: var(--accent-color);
}

.hero .hero-features .feature-item:hover .icon i {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .hero .hero-content .content {
    text-align: center;
    padding: 60px 0 35px;
  }

  .hero .hero-content .content h1,
  .hero .hero-content .content p {
    max-width: 100%;
  }

  .hero .hero-content .content .cta-group {
    justify-content: center;
  }

  .hero .hero-content .content .hero-support-note {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-content .hero-image {
    padding: 30px 0 60px;
  }

  .hero .hero-content .hero-image .service-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content {
    padding: 45px 0 25px;
  }

  .hero .hero-content .content .hero-badge {
    font-size: 0.82rem;
    padding: 7px 12px;
    margin-bottom: 1.25rem;
  }

  .hero .hero-content .content h1 {
    font-size: 2rem;
    line-height: 1.18;
    margin-bottom: 1.25rem;
  }

  .hero .hero-content .content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .hero .hero-content .content .cta-group {
    gap: 0.75rem;
  }

  .hero .hero-content .content .cta-group .btn-primary,
  .hero .hero-content .content .cta-group .btn-secondary {
    width: 100%;
  }

/* Added responsive H1 overrides from SCSS stage 7D.03 */
@media (min-width: 1200px) {
  .hero .hero-content .content h1 {
    font-size: 3.2rem; /* ~51px - desktop */
    line-height: 1.14;
    max-width: 760px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero .hero-content .content h1 {
    font-size: 2.75rem; /* ~44px - notebook */
    line-height: 1.15;
    max-width: 720px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero .hero-content .content h1 {
    font-size: 2.4rem; /* ~38px - tablet */
    line-height: 1.16;
    max-width: 680px;
  }
}

  .hero .hero-content .content .cta-group .btn-primary {
    padding: 0.95rem 1.5rem;
  }

  .hero .hero-content .content .cta-group .btn-secondary {
    padding: 0.75rem 1.5rem;
  }

  .hero .hero-content .content .hero-support-note {
    text-align: left;
    justify-content: flex-start;
  }

  .hero .hero-content .hero-image {
    padding: 25px 0 45px;
  }

  .hero .hero-content .hero-image .service-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
  }

  .hero .hero-features {
    padding: 3rem 0;
  }

  .hero .hero-features .feature-item {
    padding: 1.5rem;
  }

  .hero .hero-features .feature-item .icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
  }

  .hero .hero-features .feature-item .icon i {
    font-size: 1.45rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
  opacity: 0.03;
  z-index: 1;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  height: 100%;
  padding: 60px 40px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
  overflow: hidden;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-services .service-item:hover::before {
  transform: scaleX(1);
}

.featured-services .service-item:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.featured-services .service-item:hover .service-icon i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.featured-services .service-item:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.featured-services .service-item:hover .service-link i {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .featured-services .service-item {
    padding: 40px 30px;
  }
}

.featured-services .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.featured-services .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.featured-services h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-services p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 15px;
}

.featured-services .service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.featured-services .service-link span {
  font-weight: 500;
}

.featured-services .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.featured-services .service-link:hover {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 120px 0;
}

.services .service-item {
  padding: 60px 40px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover .service-icon i {
  transform: scale(1.1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
  border-radius: 50%;
}

.services .service-icon i {
  font-size: 36px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.services p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }

  .services .service-icon i {
    font-size: 28px;
  }

  .services h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services p {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content .description {
  margin-bottom: 60px;
}

.about .content .description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content .description p:last-child {
  margin-bottom: 0;
}

.about .content .stats-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .about .content .stats-row {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .about .content .stats-row {
    justify-content: space-between;
    gap: 20px;
  }
}

.about .content .stats-row .stat-item {
  text-align: left;
}

.about .content .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about .content .stats-row .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about .content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .content .cta-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .about .content .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.about .content .cta-section .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.about .content .cta-section .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.about .content .cta-section .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.about .content .cta-section .btn-link:hover {
  color: var(--accent-color);
}

.about .content .cta-section .btn-link:hover i {
  transform: translateX(4px);
}

.about .content .cta-section .btn-link i {
  transition: transform 0.3s ease;
}

.about .image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

@media (max-width: 992px) {
  .about .image-container {
    min-height: 400px;
  }
}

.about .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about .image-container .image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 200px;
}

@media (max-width: 576px) {
  .about .image-container .image-overlay {
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }
}

.about .image-container .image-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about .image-container .image-overlay .overlay-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .image-container .image-overlay .overlay-content .overlay-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.about .image-container .image-overlay .overlay-content .overlay-text p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Soluciones Ti Section
--------------------------------------------------------------*/
.soluciones-ti .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.soluciones-ti .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.soluciones-ti .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.soluciones-ti .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.soluciones-ti .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.soluciones-ti .portfolio-filters li:hover {
  color: var(--default-color);
}

.soluciones-ti .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.soluciones-ti .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .soluciones-ti .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.soluciones-ti .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.soluciones-ti .portfolio-card:hover {
  transform: translateY(-8px);
}

.soluciones-ti .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.soluciones-ti .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.soluciones-ti .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.soluciones-ti .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.soluciones-ti .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.soluciones-ti .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.soluciones-ti .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .soluciones-ti .image-container .overlay-content {
  transform: translateY(0);
}

.soluciones-ti .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.soluciones-ti .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.soluciones-ti .content {
  padding: 30px 0;
  text-align: center;
}

.soluciones-ti .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.soluciones-ti .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 992px) {
  .soluciones-ti .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .soluciones-ti .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
  padding: 60px 0;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 50px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 0;
  max-width: 680px;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 36px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 38px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 24px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
  border-radius: 0;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 58%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field select.form-input {
  appearance: none;
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 28px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact .contact-form-container .contact-form .contact-form-note i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact .contact-form-container .contact-form .loading,
.contact .contact-form-container .contact-form .error-message,
.contact .contact-form-container .contact-form .sent-message {
  font-size: 0.95rem;
}

.contact .contact-form-container .contact-form .send-button {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-color), transparent 72%);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  height: 100%;
  padding: 56px 40px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 46px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-methods {
  margin-bottom: 46px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-details a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-sidebar .contact-method .contact-details a:hover {
  color: var(--accent-color);
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-top: 34px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.contact .contact-sidebar .connect-section p {
  font-size: 15px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .form-intro p {
    max-width: 100%;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-form-container .contact-form .send-button {
    width: 100%;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 38px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 28px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

.service-details .service-intro {
  text-align: center;
  margin-bottom: 72px;
}

.service-details .service-intro .service-badge {
  margin-bottom: 24px;
}

.service-details .service-intro .service-badge span {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.service-details .service-intro h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 28px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-intro .lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
}

.service-details .service-content {
  margin-bottom: 76px;
}

.service-details .visual-section {
  margin-bottom: 76px;
}

.service-details .visual-section .service-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 42px color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .visual-section .service-text {
  padding-left: 40px;
}

.service-details .visual-section .service-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .visual-section .service-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 18px;
}

.service-details .visual-section .service-text p:last-child {
  margin-bottom: 0;
}

.service-details .features-section {
  margin-bottom: 76px;
  padding: 56px 36px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 18px;
}

.service-details .features-section .feature-item {
  height: 100%;
  text-align: center;
  padding: 0 12px;
}

.service-details .features-section .feature-item .feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.service-details .features-section .feature-item .feature-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.service-details .features-section .feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.service-details .features-section .feature-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  margin: 0;
}

.service-details .process-section {
  margin-bottom: 76px;
}

.service-details .process-section .process-info {
  padding-right: 40px;
}

.service-details .process-section .process-info h3 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 22px;
  color: var(--heading-color);
}

.service-details .process-section .process-info p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 24px;
}

.service-details .process-section .process-info .process-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .process-section .process-info .process-link i {
  transition: transform 0.3s ease;
}

.service-details .process-section .process-info .process-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 12%);
}

.service-details .process-section .process-info .process-link:hover i {
  transform: translateX(4px);
}

.service-details .process-section .process-steps .step {
  display: flex;
  gap: 22px;
  margin-bottom: 30px;
}

.service-details .process-section .process-steps .step:last-child {
  margin-bottom: 0;
}

.service-details .process-section .process-steps .step .step-number {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-details .process-section .process-steps .step .step-content h5 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .process-section .process-steps .step .step-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  margin: 0;
}

.service-details .info-grid .info-card {
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 32px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--default-color), transparent 94%);
}

.service-details .info-grid .info-card .info-header {
  margin-bottom: 24px;
}

.service-details .info-grid .info-card .info-header h4 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .info-grid .info-card .info-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .info-grid .info-card .info-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .info-grid .info-card .info-content .info-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.service-details .info-grid .info-card .info-content .info-list li:last-child {
  margin-bottom: 0;
}

.service-details .info-grid .info-card .info-content .info-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-color);
  font-size: 0.95rem;
}

.service-details .info-grid .info-card .service-form .form-field {
  margin-bottom: 16px;
}

.service-details .info-grid .info-card .service-form input[type=text],
.service-details .info-grid .info-card .service-form input[type=email],
.service-details .info-grid .info-card .service-form input[type=tel],
.service-details .info-grid .info-card .service-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 8px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.service-details .info-grid .info-card .service-form input[type=text]:focus,
.service-details .info-grid .info-card .service-form input[type=email]:focus,
.service-details .info-grid .info-card .service-form input[type=tel]:focus,
.service-details .info-grid .info-card .service-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .info-grid .info-card .service-form input[type=text]::placeholder,
.service-details .info-grid .info-card .service-form input[type=email]::placeholder,
.service-details .info-grid .info-card .service-form input[type=tel]::placeholder,
.service-details .info-grid .info-card .service-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 58%);
}

.service-details .info-grid .info-card .service-form textarea {
  resize: vertical;
}

.service-details .info-grid .info-card .service-form .loading,
.service-details .info-grid .info-card .service-form .error-message,
.service-details .info-grid .info-card .service-form .sent-message {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.service-details .info-grid .info-card .service-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.service-details .info-grid .info-card .service-form .submit-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-details .info-grid .info-card .service-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-color), transparent 76%);
}

.service-details .info-grid .info-card .service-form .submit-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .service-details .visual-section .service-text {
    padding-left: 0;
    margin-top: 34px;
  }

  .service-details .process-section .process-info {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .service-details {
    padding: 60px 0;
  }

  .service-details .service-intro {
    margin-bottom: 52px;
  }

  .service-details .service-intro .lead {
    font-size: 1.05rem;
  }

  .service-details .service-content {
    margin-bottom: 60px;
  }

  .service-details .visual-section,
  .service-details .features-section,
  .service-details .process-section {
    margin-bottom: 56px;
  }

  .service-details .visual-section .service-image img {
    height: 300px;
  }

  .service-details .features-section {
    padding: 40px 24px;
  }

  .service-details .features-section .feature-item {
    padding: 0;
  }

  .service-details .process-section .process-steps .step {
    gap: 16px;
  }

  .service-details .process-section .process-steps .step .step-number {
    min-width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .service-details .info-grid .row>div {
    margin-bottom: 24px;
  }

  .service-details .info-grid .row>div:last-child {
    margin-bottom: 0;
  }

  .service-details .info-grid .info-card {
    padding: 26px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 5rem;
  --content-spacing: 4rem;
  --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.portfolio-details .project-hero .hero-content .project-category {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.portfolio-details .project-hero .hero-content .project-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .project-hero .hero-content .project-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  margin-bottom: 0;
}

.portfolio-details .project-hero .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
  text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details .visual-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
  right: 30px;
}

.portfolio-details .content-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
  text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .content-section .project-overview .overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase {
  padding: 4rem 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  margin: var(--section-spacing) -15px;
  border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.4;
}

.portfolio-details .technology-stack {
  margin-bottom: var(--section-spacing);
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.portfolio-details .process-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
  grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
  transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.portfolio-details .key-features-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
  padding-right: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-details .key-features-section .features-list .feature-row:last-child {
  margin-bottom: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details .project-footer {
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  color: var(--heading-color);
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
  font-size: 1rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-details .content-section .project-overview .challenge-solution {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2.25rem;
  }

  .portfolio-details .metrics-showcase .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .key-features-section .features-intro {
    margin-bottom: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 3rem;
  }

  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 0.9rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2rem;
  }

  .portfolio-details .project-footer .footer-navigation {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
  .portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
    order: -1;
  }

  .portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .gallery-masonry {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-masonry .gallery-item.large {
    grid-row: span 1;
  }

  .portfolio-details .metrics-showcase {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# 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 2 Section
--------------------------------------------------------------*/
.privacy-2 {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-2 .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy-2 .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-2 .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy-2 .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy-2 .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy-2 .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy-2 .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy-2 .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy-2 .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy-2 .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy-2 .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy-2 .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy-2 .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-contact p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy-2 .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy-2 .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy-2 {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy-2 .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy-2 h1 {
    font-size: 24pt;
  }

  .privacy-2 h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy-2 h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy-2 p,
  .privacy-2 ul {
    page-break-inside: avoid;
  }

  .privacy-2 .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy-2 .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy-2 .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy-2 .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy-2 .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy-2 .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy-2 .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* ============================================================
   D&A Systems — Premium visual refinement layer
   ============================================================ */

   :root {
  --background-color: #ffffff;
  --default-color: #5f6876;
  --heading-color: #00143b;
  --accent-color: #01aaf2;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --da-navy: #00143b;
  --da-navy-2: #061b4a;
  --da-cyan: #00c8fd;
  --da-blue: #007fce;
  --da-soft-bg: #f5f7fa;
  --da-soft-border: #e6eaf0;
  --da-card-shadow: 0 14px 40px rgba(0, 20, 59, 0.08);
  --da-card-shadow-hover: 0 22px 54px rgba(0, 20, 59, 0.14);
}

.light-background {
  --background-color: #f5f7fa;
  --surface-color: #ffffff;
  --default-color: #5f6876;
  --heading-color: #00143b;
  --accent-color: #01aaf2;
}

.dark-background {
  --background-color: #020923;
  --default-color: #c0c5ce;
  --heading-color: #ffffff;
  --accent-color: #00c8fd;
  --surface-color: #061b4a;
  --contrast-color: #ffffff;
}

body {
  color: var(--default-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

section,
.section {
  padding: 76px 0;
}

@media (max-width: 768px) {
  section,
  .section {
    padding: 58px 0;
  }
}

/* 2. Header más corporativo */
.header {
  border-bottom: 1px solid rgba(230, 234, 240, 0.9);
}

.header .topbar {
  background: linear-gradient(90deg, #020923 0%, #00143b 52%, #061b4a 100%);
}

.header .branding {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.scrolled .header {
  box-shadow: 0 10px 34px rgba(0, 20, 59, 0.1);
}

/* 3. Nav con detalle activo premium */
@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    font-weight: 600;
    position: relative;
  }

  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), var(--da-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
  }

  .navmenu > ul > li:hover > a::after,
  .navmenu > ul > li > a.active::after {
    transform: scaleX(1);
  }
}

/* 4. Hero con más profundidad y presencia */
.hero {
  background:
    radial-gradient(circle at 85% 16%, rgba(0, 200, 253, 0.10) 0%, rgba(0, 200, 253, 0) 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #f0f9ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(1, 170, 242, 0.08);
  filter: blur(4px);
  z-index: 1;
}

.hero .hero-content .content {
  padding: 72px 0 66px;
}

.hero .hero-content .hero-image {
  padding: 72px 0 66px;
}

.hero .hero-content .content .hero-badge {
  color: #007fce;
  background: rgba(1, 170, 242, 0.1);
  border: 1px solid rgba(1, 170, 242, 0.22);
  box-shadow: 0 8px 22px rgba(1, 170, 242, 0.08);
}

.hero .hero-content .content h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  max-width: 760px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

@media (min-width: 1200px) {
  .hero .hero-content .content h1 {
    font-size: 3.2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero .hero-content .content h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero .hero-content .content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content {
    padding: 44px 0 24px;
  }

  .hero .hero-content .content h1 {
    font-size: 2rem;
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .hero .hero-content .hero-image {
    padding: 24px 0 44px;
  }
}

.hero .hero-content .content p {
  color: rgba(95, 104, 118, 0.95);
}

.hero .hero-content .content .cta-group .btn-primary,
.contact .contact-form-container .contact-form .send-button,
.footer .footer-cta .footer-button,
.service-details .info-grid .info-card .service-form .submit-btn {
  background: linear-gradient(135deg, #007fce 0%, #01aaf2 55%, #00c8fd 100%);
  border: 0;
  box-shadow: 0 12px 28px rgba(1, 170, 242, 0.24);
}

.hero .hero-content .content .cta-group .btn-primary:hover,
.contact .contact-form-container .contact-form .send-button:hover,
.footer .footer-cta .footer-button:hover,
.service-details .info-grid .info-card .service-form .submit-btn:hover {
  background: linear-gradient(135deg, #006fb5 0%, #009de0 58%, #00b9ea 100%);
  box-shadow: 0 16px 34px rgba(1, 170, 242, 0.32);
}

.hero .hero-content .hero-image img {
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 20, 59, 0.18);
}

.hero .hero-content .hero-image .service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(1, 170, 242, 0.22);
  box-shadow: 0 18px 44px rgba(0, 20, 59, 0.16);
}

/* 5. Feature cards del Hero */
.hero .hero-features {
  background: #ffffff;
  border-top: 1px solid var(--da-soft-border);
}

.hero .hero-features .feature-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(230, 234, 240, 0.95);
  box-shadow: var(--da-card-shadow);
}

.hero .hero-features .feature-item:hover {
  box-shadow: var(--da-card-shadow-hover);
  border-color: rgba(1, 170, 242, 0.35);
}

/* 6. Títulos de sección más premium */
.section-title {
  padding-bottom: 52px;
}

.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(95, 104, 118, 0.88);
  line-height: 1.7;
}

/* 7. Tarjetas de escenarios críticos */
.featured-services .service-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(230, 234, 240, 0.95);
  box-shadow: var(--da-card-shadow);
}

.featured-services .service-item:hover {
  box-shadow: var(--da-card-shadow-hover);
  border-color: rgba(1, 170, 242, 0.35);
}

.featured-services h3 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* 8. Tarjetas de servicios más premium */
.services .service-item {
  border: 1px solid rgba(230, 234, 240, 0.95);
  border-radius: 18px;
  box-shadow: var(--da-card-shadow);
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--da-blue), var(--accent-color), var(--da-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item:hover {
  border-color: rgba(1, 170, 242, 0.38);
  box-shadow: var(--da-card-shadow-hover);
}

.services .service-icon {
  box-shadow:
    0 12px 28px rgba(1, 170, 242, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.services h3 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

.services p {
  color: rgba(95, 104, 118, 0.9);
}

.services .service-link {
  color: var(--da-navy);
}

/* 9. About más sólido */
.about .content h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.about .content .lead {
  color: rgba(95, 104, 118, 0.98);
}

.about .image-container img {
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(0, 20, 59, 0.13);
}

.about .image-container .image-overlay {
  border-radius: 18px;
  border: 1px solid rgba(1, 170, 242, 0.2);
  box-shadow: 0 18px 44px rgba(0, 20, 59, 0.16);
}

.about .content .stats-row .stat-number {
  font-weight: 800;
}

.about .content .stats-row .stat-label {
  color: rgba(95, 104, 118, 0.76);
  font-weight: 700;
}

/* 10. Soluciones / portfolio más premium */
.soluciones-ti .portfolio-card {
  border-radius: 18px;
  border: 1px solid rgba(230, 234, 240, 0.95);
  box-shadow: var(--da-card-shadow);
  background: #ffffff;
}

.soluciones-ti .portfolio-card:hover {
  box-shadow: var(--da-card-shadow-hover);
  border-color: rgba(1, 170, 242, 0.35);
}

.soluciones-ti .image-container {
  border-radius: 18px 18px 10px 10px;
}

.soluciones-ti .portfolio-card:hover .image-container .overlay-content {
  transform: translateY(0);
}

.soluciones-ti .content {
  padding: 26px 22px 30px;
}

.soluciones-ti .content h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.soluciones-ti .content p {
  font-size: 0.95rem;
  color: rgba(95, 104, 118, 0.86);
}

.soluciones-ti .portfolio-filters li {
  font-weight: 700;
}

/* 11. FAQ con más profundidad */
.faq .faq-wrapper {
  background: #ffffff;
  border: 1px solid rgba(230, 234, 240, 0.95);
  border-radius: 22px;
  padding: 8px 34px;
  box-shadow: var(--da-card-shadow);
}

.faq .faq-item .faq-header h4 {
  font-weight: 700;
}

@media (max-width: 576px) {
  .faq .faq-wrapper {
    padding: 0 20px;
    border-radius: 18px;
  }
}

/* 12. Contacto más premium */
.contact .contact-sidebar {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 200, 253, 0.16) 0%, rgba(0, 200, 253, 0) 36%),
    linear-gradient(135deg, #f8fbff 0%, #eef8ff 100%);
  box-shadow: var(--da-card-shadow);
}

.contact .contact-sidebar .contact-method .contact-icon {
  background: rgba(1, 170, 242, 0.12);
  box-shadow: inset 0 0 0 1px rgba(1, 170, 242, 0.12);
}

/* 13. Footer más corporativo */
.footer {
  background: #ffffff;
}

.footer .footer-bottom {
  background: #f8fafc;
}

/* 14. Page title para páginas internas */
.page-title {
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 200, 253, 0.13) 0%, rgba(0, 200, 253, 0) 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f9fd 100%);
  border-bottom: 1px solid var(--da-soft-border);
  padding: 34px 0 42px;
}

.page-title .title-wrapper h1 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* 15. Detalles de servicios / páginas internas */
.service-details .features-section,
.service-details .info-grid .info-card,
.portfolio-details .metrics-showcase {
  box-shadow: var(--da-card-shadow);
}

.service-details .info-grid .info-card {
  border-radius: 18px;
}
