﻿

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* 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: "Lato",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/*--------------------------------------------------------------
# PALETA DE COLORES - Northstar Custom Theme
# Estilo oscuro profesional con acentos vibrantes
--------------------------------------------------------------*/
:root { 
  /* â•â•â• FONDOS â•â•â• */
  --background-color: #010409; /* Negro profundo */
  --default-color: #b5b5b5; /* Gris claro para texto */
  --heading-color: #ffffff; /* Blanco puro para tÃ­tulos */
  
  /* â•â•â• COLOR PRIMARIO â•â•â• */
  --accent-color: #2681f6; /* Azul brillante principal */
  
  /* â•â•â• COLORES SECUNDARIOS - Paleta vibrante â•â•â• */
  --accent-secondary: #623fd4; /* Violeta */
  --accent-tertiary: #259ebf; /* Cyan/Teal */
  --accent-quaternary: #4060ed; /* Azul Ã­ndigo */
  --accent-pink: #fd17b5; /* Rosa/Magenta vibrante */
  --accent-teal: #12dffa; /* Cyan brillante */
  --accent-blue-purple: #8a18b6; /* PÃºrpura */
  --accent-periwinkle: #4060ed; /* Azul Ã­ndigo para hovers */
  --accent-footer: #ffffff; /* Blanco para footer */
  --accent-ice: #12dffa; /* Cyan brillante */
  --accent-frost: #623fd4; /* Violeta */
  --accent-midnight: #16171d; /* Gris muy oscuro */
  --accent-steel: #16171d; /* Gris oscuro */
  --accent-gold: #fea44c; /* Naranja/Dorado */
  --accent-emerald: #259ebf; /* Cyan/Teal para success */
  
  /* â•â•â• SUPERFICIES â•â•â• */
  --surface-color: #010409; /* Negro profundo */
  --surface-elevated: #16171d; /* Gris muy oscuro */
  --surface-hover: #16171d; /* Gris oscuro hover */
  --contrast-color: #000000; /* Negro absoluto */
  
  /* â•â•â• GRADIENTES â•â•â• */
  --gradient-primary: linear-gradient(135deg, #2681f6 0%, #4060ed 100%);
  --gradient-secondary: linear-gradient(135deg, #623fd4 0%, #8a18b6 100%);
  --gradient-tertiary: linear-gradient(135deg, #259ebf 0%, #12dffa 100%);
  --gradient-accent: linear-gradient(135deg, #8a18b6 0%, #fd17b5 100%);
  --gradient-gold: linear-gradient(135deg, #fea44c 0%, #fd17b5 100%);
  --gradient-footer: linear-gradient(180deg, #010409 0%, #000000 100%);
  --gradient-frost: linear-gradient(135deg, #623fd4 0%, #4060ed 100%);
  --gradient-aurora: linear-gradient(135deg, #2681f6 0%, #8a18b6 50%, #12dffa 100%);
  --gradient-ice: linear-gradient(180deg, rgba(38, 129, 246, 0.08) 0%, transparent 100%);
  
  /* â•â•â• SOMBRAS â•â•â• */
  --shadow-color-primary: rgba(38, 129, 246, 0.25);
  --shadow-color-secondary: rgba(98, 63, 212, 0.2);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 20px rgba(38, 129, 246, 0.15);
  
  /* â•â•â• EFECTOS GLOW â•â•â• */
  --glow-primary: 0 0 15px rgba(38, 129, 246, 0.3);
  --glow-secondary: 0 0 15px rgba(98, 63, 212, 0.25);
  --glow-ice: 0 0 10px rgba(18, 223, 250, 0.2);
  
  /* â•â•â• BORDES â•â•â• */
  --border-subtle: rgba(38, 129, 246, 0.12);
  --border-medium: rgba(38, 129, 246, 0.25);
  --border-strong: rgba(38, 129, 246, 0.4);
}

/* Nav Menu Colors */
:root {
  --nav-color: #8a8a8a; /* Gris para nav */
  --nav-hover-color: #2681f6; /* Azul brillante en hover */
  --nav-mobile-background-color: #010409;
  --nav-dropdown-background-color: #16171d;
  --nav-dropdown-color: #b5b5b5;
  --nav-dropdown-hover-color: #12dffa;
}

/* Color Presets */

.light-background {
  --background-color: #010409;
  --surface-color: #16171d;
}

.dark-background {
  --background-color: #020408;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #0c1220;
  --contrast-color: #05080f;
}

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

/* Custom Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(38, 129, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(38, 129, 246, 0.5), 0 0 50px rgba(38, 129, 246, 0.25);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  /* Fondo con gradiente azul frÃ­o sutil */
  background-image: 
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(38, 129, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(85, 124, 147, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(6, 182, 212, 0.02) 0%, transparent 40%);
  background-attachment: fixed;
}

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: 0;
  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);
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.98) 0%, rgba(12, 18, 32, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  z-index: 997;
  padding: 20px 0 0 0;
  border-bottom: 1px solid rgba(38, 129, 246, 0.1);
}

.header .top-row {
  padding-bottom: 10px;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.header .top-row .logo .sitename {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
}

.header .social-links a {
  color: var(--heading-color);
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

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

@media (max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
  }
}

.header .search-form {
  position: relative;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .search-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 7px 40px 7px 15px;
  background: transparent;
  transition: 0.3s;
  color: var(--default-color);
  font-size: 14px;
}

.header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.header .search-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: var(--heading-color);
  transition: 0.3s;
}

.header .search-form button:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .search-form {
    display: none;
  }
}

.header .nav-wrap {
  background-color: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(12px);
}

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

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

  .navmenu li {
    position: relative;
    list-style: none !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.3s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background: #000000;
  font-size: 15px;
  padding: 50px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.footer .footer-brand .tagline {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background-color: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #ffffff;
}

.footer .social-links a:hover {
  background-color: #2681f6;
  color: #ffffff;
  transform: translateY(-3px);
  border-color: #2681f6;
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-contact p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer .footer-contact p strong {
  color: #ffffff;
  font-weight: 600;
}

.footer .footer-contact p span {
  color: #ffffff;
  font-weight: 400;
}

.footer .footer-links-grid h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.footer .footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
}

.footer .footer-links-grid ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "â†’";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-footer);
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-footer);
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}

.footer .footer-cta h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer .footer-cta .btn-outline:hover {
  background: var(--accent-footer);
  color: var(--contrast-color);
  border-color: var(--accent-footer);
  transform: translateY(-2px);
}

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

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--heading-color);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-footer);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}

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

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

  .footer .footer-links-grid .col-6 {
    margin-bottom: 30px;
  }

  .footer .footer-links-grid h5 {
    text-align: left;
  }

  .footer .footer-links-grid ul {
    text-align: left;
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.3s 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: 0;
  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-teal);
  width: 40px;
  height: 40px;
  border-radius: 0;
  transition: all 0.25s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--accent-periwinkle);
  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 ol,
.page-title .breadcrumbs ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.page-title .breadcrumbs ol li,
.page-title .breadcrumbs ul li {
  list-style: none !important;
  display: inline-block;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
  list-style: none !important;
}

.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.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: var(--default-color);
  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: 40px 0;
  scroll-margin-top: 135px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.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-top: 80px;
  min-height: 55vh;
  display: grid;
  align-items: center;
  position: relative;
  padding-bottom: 40px;
  /* Decorative background */
  /* Swiper default fix if used somewhere inside */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 70%), radial-gradient(900px 500px at 90% 80%, color-mix(in srgb, var(--heading-color), transparent 92%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-card {
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: var(--surface-color);
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  overflow: hidden;
}

.hero .hero-card .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 12px;
  border-radius: 0;
}

.hero .hero-card .eyebrow i {
  color: var(--accent-color);
}

.hero .hero-card .content h2 {
  margin: 0;
  line-height: 1.15;
}

.hero .hero-card .content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.hero .hero-card .btn-primary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 0;
  color: var(--contrast-color);
  background: var(--gradient-primary);
  border: 1px solid transparent;
  transition: 0.3s;
}

.hero .hero-card .btn-primary-ghost:hover {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 129, 246, 0.35);
}

.hero .hero-card .btn-video {
  font-weight: 600;
  color: var(--heading-color);
  transition: 0.3s;
}

.hero .hero-card .btn-video .play-icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: 0.3s;
}

.hero .hero-card .btn-video:hover {
  color: var(--accent-color);
}

.hero .hero-card .btn-video:hover .play-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.05);
}

.hero .hero-card .mini-stats .stat {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero .hero-card .mini-stats .stat i {
  color: var(--accent-color);
}

.hero .media-stack {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-inline: auto;
}

.hero .media-stack .media {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  transform-origin: center;
  transition: 0.3s;
}

.hero .media-stack .media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero .media-stack .media:hover {
  transform: translateY(-4px);
}

.hero .media-stack .primary {
  transform: rotate(-2deg);
}

.hero .media-stack .secondary {
  position: absolute;
  width: 70%;
  right: -8%;
  bottom: -10%;
  transform: rotate(6deg);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .hero .media-stack .secondary {
    right: -2%;
    bottom: -6%;
    width: 68%;
  }
}

.hero .media-stack .floating-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: floatY 4s ease-in-out infinite;
}

.hero .media-stack .floating-badge i {
  color: var(--accent-color);
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

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

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

.hero .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 1200px) {
  .hero .hero-card {
    padding: 28px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero .hero-card .content h2 {
    font-size: clamp(28px, 4vw, 36px);
  }
}

@media (max-width: 576px) {
  .hero .hero-card {
    padding: 22px;
  }

  .hero .media-stack .floating-badge {
    transform: scale(0.95);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 0;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease-in-out;
}

.featured-services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(14, 165, 233, 0.15);
}

.featured-services .service-item:hover::before {
  height: 100%;
}

.featured-services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.featured-services .service-item:hover .link-item i {
  transform: translateX(5px);
}

.featured-services .service-item .icon {
  margin-bottom: 1.5rem;
}

.featured-services .service-item .icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
  transition: all 0.3s ease-in-out;
}

/* Color variations for each service - Nueva paleta vibrante */
.featured-services .service-item:nth-child(1) .icon i {
  color: #2681f6; /* Azul brillante */
}

.featured-services .service-item:nth-child(2) .icon i {
  color: #623fd4; /* Violeta */
}

.featured-services .service-item:nth-child(3) .icon i {
  color: #259ebf; /* Cyan/Teal */
}

.featured-services .service-item:nth-child(4) .icon i {
  color: #8a18b6; /* PÃºrpura */
}

.featured-services .service-item:nth-child(5) .icon i {
  color: #12dffa; /* Cyan brillante */
}

.featured-services .service-item:nth-child(6) .icon i {
  color: #fea44c; /* Naranja/Dorado */
}

.featured-services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.featured-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-services .service-item .card-links {
  margin-top: auto;
}

.featured-services .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.featured-services .service-item .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.featured-services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991px) {
  .featured-services .card-item {
    padding: 1.75rem;
  }

  .featured-services .card-item h3 {
    font-size: 1.35rem;
  }

  .featured-services .card-item .icon i {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .featured-services .card-item {
    padding: 1.5rem;
  }

  .featured-services .card-item h3 {
    font-size: 1.25rem;
  }

  .featured-services .card-item .icon i {
    font-size: 2rem;
  }

  .featured-services .card-item:hover {
    transform: translateY(-3px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-teal), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-teal), transparent 92%);
  --accent-purple-soft: color-mix(in srgb, var(--accent-blue-purple), transparent 88%);
}

.about .intro-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: 0;
  padding: 32px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 1.125rem;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: 0;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .metric-band {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid var(--soft-border);
  border-radius: 0;
}

@media (max-width: 576px) {
  .about .intro-card .metric-band {
    gap: 12px;
    padding: 12px;
  }
}

.about .intro-card .metric-band .metric {
  display: grid;
  gap: 2px;
}

.about .intro-card .metric-band .metric .value {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
}

.about .intro-card .metric-band .metric .label {
  font-size: 0.8rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about .intro-card .metric-band .divider {
  width: 1px;
  height: 34px;
  background: var(--soft-border);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band .divider {
    height: 28px;
  }
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .intro-card .actions .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
}

.about .intro-card .actions .link-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about .intro-card .actions .link-more:hover {
  color: var(--accent-color);
}

.about .intro-card .actions .link-more:hover::after {
  transform: scaleX(1);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .showcase .showcase-main .badge-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border-radius: 0;
  border: 1px solid var(--soft-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .showcase .showcase-main .badge-note i {
  color: var(--accent-color);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.about .showcase .showcase-main .badge-note strong {
  display: block;
  line-height: 1.1;
  color: var(--heading-color);
}

.about .showcase .showcase-main .badge-note small {
  display: block;
  color: var(--muted-text);
}

.about .showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about .showcase .showcase-grid .mini {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .showcase .showcase-grid .mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .about .showcase .showcase-grid .mini img {
    height: 140px;
  }
}

.about .showcase .showcase-grid .mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 30px 0;
}

.clients .clients-wrapper {
  position: relative;
  overflow: hidden;
}

.clients .clients-wrapper::before,
.clients .clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients .clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.clients .clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.clients .clients-track {
  display: flex;
  gap: 30px;
  padding: 30px;
  width: fit-content;
  animation: scroll-clients 40s linear infinite;
  will-change: transform;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-track::-webkit-scrollbar {
  display: none;
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients .client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
  background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
}

.clients .client-logo:hover img {
  filter: brightness(1.1);
}

@media (max-width: 991px) {
  .clients .client-logo {
    width: 160px;
    height: 120px;
  }

  .clients .client-logo img {
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  .clients .client-logo {
    width: 140px;
    height: 100px;
    padding: 15px;
  }

  .clients .client-logo img {
    max-height: 60px;
  }

  .clients .clients-track {
    gap: 20px;
    padding: 15px;
  }
}

/* Client Cards - Nueva paleta vibrante */
.client-card {
  background: #010409;
  border: 1px solid rgba(38, 129, 246, 0.1);
  border-radius: 0;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2681f6, #623fd4, #12dffa);
  opacity: 0;
  transition: opacity 0.3s;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 129, 246, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img {
  filter: none !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.client-card:hover img {
  filter: brightness(1.1) !important;
  opacity: 1 !important;
}

.clients-section-custom {
  background: #010409;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 30px;
  --tile-radius: 10px;
  --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 30px;
}

.stats .stats-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .stats .stats-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.stats .stat-tile {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
  border: var(--tile-border);
  border-radius: 0;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  box-shadow: var(--tile-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
  display: block;
  margin-top: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  line-height: 1.4;
}

.stats .stat-tile .tile-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1;
  font-size: 36px;
}

@media (max-width: 576px) {
  .stats .stat-tile .tile-metric .metric-number {
    font-size: 32px;
  }
}

.stats .stat-tile .tile-metric .metric-suffix {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
  border-top: 3px solid var(--accent-teal);
}

.stats .stat-tile:nth-child(1) .tile-head i {
  color: var(--accent-teal);
}

.stats .stat-tile:nth-child(2) {
  border-top: 3px solid #32a84c;
}

.stats .stat-tile:nth-child(2) .tile-head i {
  color: #32a84c;
}

.stats .stat-tile:nth-child(3) {
  border-top: 3px solid var(--accent-blue-purple);
}

.stats .stat-tile:nth-child(3) .tile-head i {
  color: var(--accent-blue-purple);
}

.stats .stat-tile:nth-child(4) {
  border-top: 3px solid #f59e0b;
}

.stats .stat-tile:nth-child(4) .tile-head i {
  color: #f59e0b;
}

.stats .legend-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
  .stats .legend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.stats .legend-row .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats .legend-row .legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
}

.stats .legend-row .legend-item .dot.dot-primary {
  background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.stats .legend-row .legend-item .text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 30%);
}

.skills .skills-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.skills .skills-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.skills .skills-header .certifications {
  display: flex;
  gap: 2rem;
}

.skills .skills-header .certifications .cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--default-color);
}

.skills .skills-header .certifications .cert-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skills .skill-item {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.skills .skill-item:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.skills .skill-item .skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.skills .skill-item .skill-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
}

.skills .skill-item .skill-header .skill-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.skills .skill-item .skill-bar {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 6px;
  border-radius: 0;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.skills .skill-item .skill-bar .progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 1px;
  transition: width 0.9s ease;
  border-radius: 0;
}

.skills .skill-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .skills .row {
    text-align: center;
  }

  .skills .skills-header {
    margin-bottom: 3rem;
  }

  .skills .skills-header .certifications {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .skills {
    padding: 40px 0;
  }

  .skills .skills-header h3 {
    font-size: 1.8rem;
  }

  .skills .skills-header .certifications {
    flex-direction: column;
    gap: 1rem;
  }

  .skills .skill-item {
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border-radius: 0;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.5s ease;
}

.services .service-card .service-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

.services .service-card .service-icon-wrapper {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.services .service-card .service-icon-wrapper .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-card .service-icon-wrapper .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

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

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

.services .service-card .service-content .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services .service-card .service-content .service-list li {
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.services .service-card .service-content .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 0;
}

.services .service-card .service-content .service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .service-card .service-content .service-pricing .price-tag {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .price-tag::before {
  content: "From ";
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services .service-card .service-content .service-pricing .service-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 0;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn i {
  transition: transform 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .service-btn:hover i {
  transform: translateX(3px);
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.services .service-card:hover::before {
  left: 100%;
}

.services .service-card:hover .service-icon-wrapper .service-icon {
  background: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.services .service-card:hover .service-icon-wrapper .service-icon i {
  color: var(--contrast-color);
}

.services .service-card.featured {
  background: linear-gradient(135deg, rgba(85, 124, 147, 0.12), rgba(129, 140, 248, 0.08));
  border-color: var(--accent-secondary);
  border-width: 2px;
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(85, 124, 147, 0.3);
}

.services .service-card.featured .service-number {
  background: var(--accent-secondary);
  color: #0f172a;
  box-shadow: 0 8px 25px rgba(85, 124, 147, 0.4);
  font-weight: 700;
}

.services .service-card.featured .service-icon-wrapper .service-icon {
  background: linear-gradient(135deg, var(--accent-secondary), rgba(129, 140, 248, 0.8));
  box-shadow: 0 0 20px rgba(85, 124, 147, 0.5);
}

.services .service-card.featured .service-icon-wrapper .service-icon i {
  color: #0f172a;
}

.services .service-card.featured .service-content h4 {
  color: var(--accent-secondary);
  text-shadow: 0 0 10px rgba(85, 124, 147, 0.3);
}

.services .service-card.featured .service-content p {
  color: rgba(248, 250, 252, 0.95);
}

.services .service-card.featured .service-content .service-list li {
  color: rgba(248, 250, 252, 0.9);
}

.services .service-card.featured .service-content .service-list li::before {
  background: var(--accent-secondary);
  box-shadow: 0 0 8px rgba(85, 124, 147, 0.6);
}

.services .service-card.featured .service-content .service-pricing {
  border-top-color: rgba(85, 124, 147, 0.3);
}

.services .service-card.featured .service-content .service-pricing .price-tag {
  color: var(--accent-secondary);
  text-shadow: 0 0 15px rgba(85, 124, 147, 0.4);
  font-weight: 700;
}

.services .service-card.featured .service-content .service-pricing .price-tag::before {
  color: rgba(85, 124, 147, 0.6);
}

.services .service-card.featured .service-content .service-pricing .service-btn {
  background: var(--accent-secondary);
  color: #0f172a;
  border-color: var(--accent-secondary);
  font-weight: 600;
}

.services .service-card.featured .service-content .service-pricing .service-btn:hover {
  background: transparent;
  color: var(--accent-secondary);
  border-color: var(--accent-secondary);
  box-shadow: 0 0 20px rgba(85, 124, 147, 0.4);
}

.services .service-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
  transform: rotate(-5deg) scale(1.1);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-card {
    padding: 30px 20px;
  }

  .services .service-card .service-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .services .service-card .service-icon-wrapper .service-icon {
    width: 60px;
    height: 60px;
  }

  .services .service-card .service-icon-wrapper .service-icon i {
    font-size: 28px;
  }

  .services .service-card .service-content h4 {
    font-size: 20px;
  }

  .services .service-card .service-content .service-pricing .price-tag {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services .service-card {
    padding: 25px 15px;
  }

  .services .service-card .service-content .service-pricing {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .services .service-card .service-content .service-pricing .service-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  /* Custom properties for quick theming */
  --card-radius: 18px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  --muted: color-mix(in srgb, var(--default-color), transparent 35%);
  /* Icon badge palettes via color-mix on accent for harmony */
  /* Swiper global fix if a slider is later embedded */
}

.features .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.features .intro-panel .preview-visual {
  position: relative;
}

.features .intro-panel .preview-visual img {
  display: block;
}

.features .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 0;
  pointer-events: none;
}

.features .intro-panel .intro-content .intro-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.features .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.features .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.features .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.features .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 0;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .features .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.features .feature-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 0;
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  overflow: hidden;
}

.features .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.features .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .feature-item .f-icon i {
  font-size: 22px;
}

.features .feature-item .f-body .f-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.features .feature-item .f-body .f-text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.features .feature-item .f-body .f-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid var(--ring-color);
}

.features .badge-blue {
  background: color-mix(in srgb, var(--accent-teal), transparent 15%);
  color: var(--accent-teal);
  border: 1px solid color-mix(in srgb, var(--accent-teal), transparent 70%);
}

.features .badge-green {
  background: color-mix(in srgb, var(--accent-color), #2ecc71 45%);
}

.features .badge-purple {
  background: color-mix(in srgb, var(--accent-blue-purple), transparent 15%);
  color: var(--accent-blue-purple);
  border: 1px solid color-mix(in srgb, var(--accent-blue-purple), transparent 70%);
}

.features .badge-orange {
  background: color-mix(in srgb, var(--accent-color), #035aa6 40%);
}

.features .badge-cyan {
  background: color-mix(in srgb, var(--accent-periwinkle), transparent 15%);
  color: var(--accent-periwinkle);
  border: 1px solid color-mix(in srgb, var(--accent-periwinkle), transparent 70%);
}

.features .badge-pink {
  background: color-mix(in srgb, var(--accent-color), #e91e63 35%);
}

.features .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.features .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
}

.features .assurance-banner .assurance-icon i {
  font-size: 20px;
}

.features .assurance-banner .assurance-content {
  flex: 1;
}

.features .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 800;
}

.features .assurance-banner .assurance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.features .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.features .assurance-banner .banner-btn:hover {
  transform: translateX(2px);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.features .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .features .intro-panel {
    padding: 24px;
  }

  .features .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .features .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .features .feature-item {
    padding: 18px 16px;
  }

  .features .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-item .f-icon i {
    font-size: 20px;
  }

  .features .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .features .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
  position: relative;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-teal);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue-purple) 100%);
}

.portfolio .portfolio-wrap {
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
  will-change: transform;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: linear-gradient(135deg, rgba(138, 24, 182, 0.85) 0%, rgba(99, 63, 212, 0.8) 50%, rgba(64, 96, 237, 0.75) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  opacity: 0;
  backdrop-filter: blur(2px);
}

.portfolio .portfolio-wrap img {
  transition: transform 0.3s ease;
  width: 100%;
  will-change: transform;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(10px);
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background: var(--accent-teal);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
  transform: scale(1);
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-item-hidden {
  display: none;
}

.portfolio #loadMoreBtn {
  background: var(--gradient-primary);
  border: none;
  padding: 14px 36px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio #loadMoreBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(38, 129, 246, 0.4);
}

.portfolio #loadMoreBtn.hidden {
  display: none;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  overflow: hidden;
}

.testimonials .critic-reviews {
  margin-bottom: 60px;
}

.testimonials .critic-reviews .critic-review {
  background: linear-gradient(145deg, rgba(12, 18, 32, 0.9) 0%, rgba(19, 29, 46, 0.8) 100%);
  padding: 30px;
  border-radius: 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(38, 129, 246, 0.1);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(38, 129, 246, 0.12);
}

.testimonials .critic-reviews .critic-review .review-quote {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent-color);
  opacity: 0.25;
  line-height: 1;
}

.testimonials .critic-reviews .critic-review .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials .critic-reviews .critic-review .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 18px;
}

.testimonials .critic-reviews .critic-review p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
  font-style: italic;
}

.testimonials .critic-reviews .critic-review .critic-info .critic-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 16px;
}

.testimonials .critic-reviews .critic-review:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.2);
  border-color: rgba(38, 129, 246, 0.35);
}

.testimonials .testimonials-container {
  margin-bottom: 60px;
}

.testimonials .testimonials-container .swiper-wrapper {
  height: auto !important;
  padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
  background: linear-gradient(145deg, rgba(12, 18, 32, 0.9) 0%, rgba(19, 29, 46, 0.8) 100%);
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(85, 124, 147, 0.08);
  height: 100%;
  border-top: 3px solid var(--accent-secondary);
  border: 1px solid rgba(85, 124, 147, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials .testimonials-container .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(85, 124, 147, 0.15);
  border-color: rgba(85, 124, 147, 0.3);
}

.testimonials .testimonials-container .testimonial-item .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials .testimonials-container .testimonial-item .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--default-color);
  line-height: 1.6;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
  display: flex;
  align-items: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 4px solid color-mix(in srgb, var(--accent-teal), transparent 70%);
  margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 0;
}

.testimonials .overall-rating {
  background: var(--gradient-primary);
  padding: 0;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.25);
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .overall-rating:hover {
  box-shadow: 0 20px 60px rgba(38, 129, 246, 0.35);
  transform: translateY(-5px);
}

.testimonials .overall-rating .rating-content {
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  min-width: 300px;
  flex: 0 0 auto;
}

.testimonials .overall-rating .rating-message {
  padding: 40px 50px;
  text-align: left;
  opacity: 1;
  flex: 1;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.95) 0%, rgba(85, 124, 147, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials .overall-rating .rating-message h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials .overall-rating .rating-message p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.testimonials .overall-rating .rating-number {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonials .overall-rating .rating-stars {
  margin-bottom: 15px;
}

.testimonials .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 28px;
  margin: 0 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonials .overall-rating .rating-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 0;
}

.testimonials .overall-rating .rating-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonials .overall-rating .rating-platforms span {
  font-size: 14px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 5px 15px;
  border-radius: 0;
}

@media (max-width: 992px) {
  .testimonials .section-header h2 {
    font-size: 28px;
  }

  .testimonials .critic-reviews .critic-review {
    margin-bottom: 30px;
  }

  .testimonials .testimonials-container .testimonial-item {
    margin-bottom: 30px;
  }
}

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

  .testimonials .section-header h2 {
    font-size: 24px;
  }

  .testimonials .overall-rating {
    padding: 0;
    width: 100% !important;
    flex-direction: column;
  }

  .testimonials .overall-rating .rating-content {
    width: 100%;
    padding: 30px;
  }

  .testimonials .overall-rating .rating-message {
    width: 100% !important;
    padding: 30px;
    opacity: 1 !important;
    white-space: normal !important;
  }

  .testimonials .overall-rating .rating-number {
    font-size: 48px;
  }

  .testimonials .overall-rating .rating-stars i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Recognition & Awards Section
--------------------------------------------------------------*/
.recognition {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1220 0%, #050a0f 100%);
}

.recognition .section-header {
  margin-bottom: 60px;
}

.recognition .section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.recognition .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.recognition .section-title .accent-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recognition .section-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 900px;
  margin: 0 auto;
}

.recognition .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.recognition .award-item {
  background: var(--surface-color);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.recognition .award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.recognition .award-item:hover::before {
  transform: scaleX(1);
}

.recognition .award-item:nth-child(2)::before {
  background: var(--gradient-secondary);
}

.recognition .award-item:nth-child(3)::before {
  background: var(--gradient-tertiary);
}

.recognition .award-item:nth-child(4)::before {
  background: linear-gradient(135deg, var(--accent-blue-purple) 0%, var(--accent-pink) 100%);
}

.recognition .award-item:nth-child(5)::before {
  background: linear-gradient(135deg, var(--accent-quaternary) 0%, var(--accent-teal) 100%);
}

.recognition .award-item:nth-child(6)::before {
  background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-periwinkle) 100%);
}

.recognition .award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
  border-color: color-mix(in srgb, var(--accent-teal), transparent 60%);
}

.recognition .award-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.recognition .award-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.recognition .award-item:hover .award-logo img {
  opacity: 1;
  transform: scale(1.05);
}

.recognition .award-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.5;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition .award-link {
  font-size: 0.875rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.recognition .award-link:hover {
  color: #12dffa;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .recognition .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .recognition .award-item {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .recognition {
    padding: 60px 0;
  }

  .recognition .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recognition .section-header {
    margin-bottom: 40px;
  }

  .recognition .award-logo {
    height: 60px;
  }
}

/* Award Item Hover Effects */
.recognition .award-item:hover,
#recognition .award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#recognition .award-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#recognition .award-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

#recognition .award-logo img {
  transition: all 0.4s ease;
}

#recognition .award-item:hover .award-logo img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

.call-to-action .cta-wrapper {
  position: relative;
}

.call-to-action .cta-wrapper .content-block {
  background-color: var(--surface-color);
  border-radius: 0;
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px color-mix(in srgb, var(--default-color), transparent 96%), 0 1px 0 color-mix(in srgb, var(--accent-color), transparent 94%);
}

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

.call-to-action .text-content .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.call-to-action .text-content .section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.call-to-action .text-content h2 {
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.call-to-action .text-content h2 .accent-text {
  color: var(--accent-color);
  font-weight: 400;
  display: block;
}

.call-to-action .text-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.call-to-action .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action .benefits-list .benefit-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.call-to-action .benefits-list .benefit-row .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.call-to-action .benefits-list .benefit-row .benefit-item .check-icon {
  width: 24px;
  height: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-row .benefit-item span {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 400;
}

.call-to-action .action-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.call-to-action .action-group .btn {
  transition: all 0.3s ease;
  border-radius: 0;
  font-weight: 500;
}

.call-to-action .action-group .btn.btn-primary-action {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.call-to-action .action-group .btn.btn-primary-action:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.call-to-action .action-group .btn.btn-text-link {
  background: transparent;
  color: var(--default-color);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.call-to-action .action-group .btn.btn-text-link:hover {
  color: var(--accent-color);
}

.call-to-action .action-group .btn.btn-text-link i {
  font-size: 1.25rem;
}

.call-to-action .trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-to-action .trust-indicators .indicator {
  text-align: center;
}

.call-to-action .trust-indicators .indicator .metric {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .trust-indicators .indicator .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.call-to-action .trust-indicators .separator {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .visual-section {
  position: relative;
}

.call-to-action .visual-section .image-container {
  position: relative;
  z-index: 2;
}

.call-to-action .visual-section .image-container .main-visual {
  width: 100%;
  border-radius: 0;
  max-width: 480px;
}

.call-to-action .visual-section .image-container .floating-badge {
  position: absolute;
  background: var(--surface-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: 3;
}

.call-to-action .visual-section .image-container .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-subtitle {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 400;
}

.call-to-action .visual-section .image-container .floating-badge.badge-1 {
  top: 10%;
  left: -20px;
  animation: floatSlow 6s ease-in-out infinite;
}

.call-to-action .visual-section .image-container .floating-badge.badge-2 {
  bottom: 15%;
  right: -30px;
  animation: floatFast 4s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .visual-section .decorative-elements .element {
  position: absolute;
  border-radius: 0;
}

.call-to-action .visual-section .decorative-elements .element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 98%));
  top: -10%;
  right: 20%;
  animation: drift 8s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements .element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 98%));
  bottom: -5%;
  left: 10%;
  animation: drift 6s ease-in-out infinite reverse;
}

.call-to-action .visual-section .decorative-elements .element.element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-color), transparent 96%));
  top: 50%;
  left: -5%;
  animation: drift 10s ease-in-out infinite;
}

@keyframes floatSlow {

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

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

@keyframes floatFast {

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

  50% {
    transform: translateY(6px) translateX(-3px);
  }
}

@keyframes drift {

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

  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }

  66% {
    transform: translate(-5px, 12px) rotate(240deg);
  }
}

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

  .call-to-action .content-block {
    padding: 3.5rem 2.5rem;
  }

  .call-to-action .text-content {
    margin-bottom: 3rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2.5rem;
  }

  .call-to-action .text-content h2 .accent-text {
    display: inline;
  }

  .call-to-action .text-content p {
    max-width: 100%;
  }

  .call-to-action .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .call-to-action .action-group .btn.btn-primary-action {
    width: 100%;
    text-align: center;
  }

  .call-to-action .trust-indicators {
    justify-content: space-between;
    gap: 1rem;
  }

  .call-to-action .trust-indicators .separator {
    display: none;
  }

  .call-to-action .floating-badge.badge-1 {
    left: 0;
    top: 5%;
  }

  .call-to-action .floating-badge.badge-2 {
    right: 0;
    bottom: 10%;
  }
}

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

  .call-to-action .content-block {
    padding: 2.5rem 1.5rem;
  }

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

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

  .call-to-action .benefits-list .benefit-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .call-to-action .trust-indicators .indicator .metric {
    font-size: 1.25rem;
  }

  .call-to-action .trust-indicators .indicator .label {
    font-size: 0.8rem;
  }

  .call-to-action .floating-badge {
    padding: 0.75rem 1rem;
  }

  .call-to-action .floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-title {
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-subtitle {
    font-size: 0.75rem;
  }

  .call-to-action .decorative-elements .element {
    transform: scale(0.7);
  }

  .call-to-action .decorative-elements .element.element-1 {
    top: -5%;
    right: 10%;
  }

  .call-to-action .decorative-elements .element.element-2 {
    bottom: 0;
    left: 5%;
  }

  .call-to-action .decorative-elements .element.element-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(38, 129, 246, 0.02) 100%);
  border: 1.5px solid rgba(38, 129, 246, 0.15);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team .member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.05), rgba(85, 124, 147, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 0;
}

.team .member-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(38, 129, 246, 0.2), 
              0 0 60px rgba(38, 129, 246, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(38, 129, 246, 0.4);
}

.team .member-card:hover::before {
  opacity: 1;
}

.team .member-card:hover .member-media .social-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team .member-card:hover .member-media img {
  transform: scale(1.1);
}

.team .member-card .member-media {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.1), rgba(45, 212, 191, 0.05));
  overflow: hidden;
}

.team .member-card .member-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team .member-card:hover .member-media::after {
  opacity: 1;
}

.team .member-card .member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%);
}

.team .member-card:hover .member-media img {
  filter: grayscale(0%);
}

.team .member-card .member-media .social-list {
  list-style: none;
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  display: flex;
  gap: 12px;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.8));
  border: 1.5px solid rgba(38, 129, 246, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 0;
  padding: 12px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.team .member-card .member-media .social-list a {
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.1), rgba(45, 212, 191, 0.05));
  border: 1.5px solid rgba(38, 129, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team .member-card .member-media .social-list a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team .member-card .member-media .social-list a i {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.team .member-card .member-media .social-list a:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(38, 129, 246, 0.3), 0 0 30px rgba(38, 129, 246, 0.2);
}

.team .member-card .member-media .social-list a:hover::before {
  opacity: 1;
}

.team .member-card .member-media .social-list a:hover i {
  color: var(--contrast-color);
}

.team .member-card .member-content {
  padding: 24px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-teal) 50%, transparent);
  opacity: 0.3;
}

.team .member-card .member-content .member-name {
  font-size: 1.2rem;
  margin: 0 0 6px 0;
  font-weight: 700;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.team .member-card:hover .member-content .member-name {
  letter-spacing: 0.5px;
}

.team .member-card .member-content .member-role {
  margin: 0 0 14px 0;
  font-size: 0.9rem;
  color: var(--accent-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.team .member-card .member-content .member-role::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.4s ease;
}

.team .member-card:hover .member-content .member-role::after {
  width: 80px;
}

.team .member-card .member-content .member-bio {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(177, 186, 196, 0.85);
  flex-grow: 1;
}

/* Team Highlight Section */
.team .team-highlight {
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.08) 0%, rgba(45, 212, 191, 0.05) 100%);
  border: 1.5px solid rgba(38, 129, 246, 0.25);
  border-radius: 0;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team .team-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(38, 129, 246, 0.1), transparent);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}

.team .team-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(38, 129, 246, 0.15);
  border-color: rgba(38, 129, 246, 0.4);
}

.team .team-highlight .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-right: 20px;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.15), rgba(45, 212, 191, 0.1));
  border: 1.5px solid rgba(38, 129, 246, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(38, 129, 246, 0.2);
}

.team .team-highlight .icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team .team-highlight:hover .icon-wrap::before {
  opacity: 0.2;
}

.team .team-highlight .icon-wrap i {
  font-size: 1.75rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.team .team-highlight .title {
  margin: 0 0 10px 0;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team .team-highlight .desc {
  color: rgba(177, 186, 196, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* Join Team Card */
.team .join-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.08), rgba(85, 124, 147, 0.05));
  border: 1.5px solid rgba(38, 129, 246, 0.25);
  display: flex;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team .join-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(38, 129, 246, 0.15), transparent 70%),
              radial-gradient(circle at 70% 50%, rgba(85, 124, 147, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: pulse 10s ease-in-out infinite;
}

.team .join-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(38, 129, 246, 0.2);
  border-color: rgba(38, 129, 246, 0.4);
}

.team .join-card:hover::before {
  opacity: 1;
}

.team .join-card .join-content {
  padding: 32px;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.team .join-card .join-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.team .join-card .join-content p {
  color: rgba(177, 186, 196, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.team .join-card .join-content .btn-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(38, 129, 246, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.team .join-card .join-content .btn-join::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team .join-card .join-content .btn-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 129, 246, 0.4), 0 0 40px rgba(38, 129, 246, 0.2);
}

.team .join-card .join-content .btn-join:hover::before {
  opacity: 1;
}

.team .join-card .join-content .btn-join i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.team .join-card .join-content .btn-join:hover i {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .team .member-card .member-content {
    padding: 20px;
  }
  
  .team .team-highlight {
    padding: 24px;
  }
  
  .team .team-highlight .icon-wrap {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }
  
  .team .join-card .join-content {
    padding: 24px;
  }
}

.team .join-card .join-content .btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), white 10%);
  color: var(--contrast-color);
}

.team .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .team .team-highlight .icon-wrap {
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  .team .member-card .member-content {
    padding: 16px;
  }

  .team .member-card .member-content .member-bio {
    font-size: 0.9rem;
  }

  .team .join-card .join-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-card.featured {
  border-color: var(--accent-secondary);
  transform: scale(1.02);
  background: linear-gradient(165deg, rgba(85, 124, 147, 0.08) 0%, var(--surface-color) 100%);
}

.pricing .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 15px 50px rgba(85, 124, 147, 0.2);
}

.pricing .pricing-card.featured .featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing .pricing-card .plan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .plan-header .plan-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pricing .pricing-card .plan-header .plan-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing .pricing-card .pricing-display {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .pricing-display .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing .pricing-card .pricing-display .price .currency {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.pricing .pricing-card .pricing-display .price .amount {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.pricing .pricing-card .pricing-display .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-card .features-list {
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .features-list .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.pricing .pricing-card .features-list .feature i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing .pricing-card:nth-child(1) .features-list .feature i.bi-check,
.pricing .pricing-card:nth-child(1) .features-list .feature i.bi-check-circle-fill {
  color: #12dffa;
}

.pricing .pricing-card:nth-child(2) .features-list .feature i.bi-check,
.pricing .pricing-card:nth-child(2) .features-list .feature i.bi-check-circle-fill {
  color: #8b5cf6;
}

.pricing .pricing-card:nth-child(3) .features-list .feature i.bi-check,
.pricing .pricing-card:nth-child(3) .features-list .feature i.bi-check-circle-fill {
  color: #10b981;
}

.pricing .pricing-card:nth-child(1) .features-list .feature i.bi-check {
  color: #12dffa;
}

.pricing .pricing-card:nth-child(2) .features-list .feature i.bi-check {
  color: #8b5cf6;
}

.pricing .pricing-card:nth-child(3) .features-list .feature i.bi-check {
  color: #10b981;
}

.pricing .pricing-card .features-list .feature span {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.5;
}

.pricing .pricing-card .btn-plan {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.pricing .pricing-card .btn-plan:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.pricing .pricing-card.featured .btn-plan {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  border-color: transparent;
}

.pricing .pricing-card.featured .btn-plan:hover {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(85, 124, 147, 0.35);
}

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

.pricing .pricing-footer .guarantee-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1rem;
}

.pricing .pricing-footer .contact-text {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

.pricing .pricing-footer .contact-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.pricing .pricing-footer .contact-text a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .pricing .pricing-card.featured {
    transform: none;
  }

  .pricing .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

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

  .pricing .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing .pricing-display .price .amount {
    font-size: 2.75rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 0;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-teal), transparent 40%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-blue-purple);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-blue-purple);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-blue-purple);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-blue-purple);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.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 {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 0;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

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

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/bg/dotted-world-1.webp");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 95%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

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

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

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

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

.contact .php-email-form {
  height: 100%;
}

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

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

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

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

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

/* Enhanced Contact Page Styles */
.page-title {
  padding: 80px 0 60px;
  text-align: center;
}

.page-title h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
}

.page-title .lead {
  font-size: 18px;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-title .title-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 0;
}

/* Contact Cards */
.contact-card {
  background: color-mix(in srgb, var(--surface-color), var(--surface-elevated) 50%);
  padding: 40px 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(38, 129, 246, 0.1);
}

.contact-card .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--contrast-color);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-card .location,
.contact-card .contact-detail {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-card .availability {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
}

.contact-card .contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.contact-card .contact-link:hover {
  gap: 12px;
  color: var(--accent-secondary);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: color-mix(in srgb, var(--surface-color), var(--surface-elevated) 50%);
  padding: 40px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  height: 100%;
}

.contact-form-wrapper .section-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.contact-form-wrapper .section-header h2 {
  color: var(--heading-color);
  font-weight: 700;
}

.contact-form-wrapper .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-wrapper .form-group {
  margin-bottom: 0;
}

.contact-form-wrapper .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper select.form-control {
  background: var(--surface-elevated);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 0;
  padding: 12px 16px;
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper select.form-control:focus {
  background: var(--surface-elevated);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-form-wrapper .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  background: transparent;
  cursor: pointer;
}

.contact-form-wrapper .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-form-wrapper .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  margin-left: 8px;
  cursor: pointer;
}

.contact-form-wrapper .btn-primary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  background: var(--gradient-primary);
  border: none;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(38, 129, 246, 0.2);
}

.contact-form-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 129, 246, 0.3);
}

.contact-form-wrapper .loading,
.contact-form-wrapper .error-message,
.contact-form-wrapper .sent-message {
  display: none;
  padding: 15px;
  border-radius: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-form-wrapper .loading {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.contact-form-wrapper .error-message {
  background: color-mix(in srgb, #df1529, transparent 90%);
  color: #df1529;
}

.contact-form-wrapper .sent-message {
  background: color-mix(in srgb, #059652, transparent 90%);
  color: #059652;
  display: flex;
  align-items: center;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Info Box */
.info-box {
  background: color-mix(in srgb, var(--surface-color), var(--surface-elevated) 50%);
  padding: 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.info-box-header i {
  font-size: 24px;
  color: var(--accent-color);
}

.info-box-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.info-box p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Hours List */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 14px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  font-weight: 500;
  color: var(--heading-color);
}

/* Quick Links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links li a {
  color: var(--default-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.quick-links li a:hover {
  color: var(--accent-color);
  gap: 12px;
}

.quick-links li a i {
  color: var(--accent-color);
  font-size: 12px;
}

/* Expectation List */
.expectation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expectation-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.expectation-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expectation-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.expectation-item strong {
  display: block;
  color: var(--heading-color);
  font-size: 15px;
  margin-bottom: 4px;
}

.expectation-item p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 16px;
  margin: 0;
}

.cta-section .btn-light {
  background: var(--contrast-color);
  color: var(--background-color);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cta-section .btn-light:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 129, 246, 0.3);
}

@media (max-width: 991px) {
  .page-title h1 {
    font-size: 36px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .cta-section .col-lg-4 {
    text-align: center !important;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-title {
    padding: 60px 0 40px;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .contact-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main-image img {
  width: 100%;
  transition: transform 0.6s;
}

.service-details .service-main-image:hover img {
  transform: scale(1.05);
}

.service-details .service-main-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 0;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details .service-main-image .experience-badge span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.service-details .service-main-image .experience-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.service-details .service-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details .service-main-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-main-content .section-header .section-subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-main-content .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .section-header h2 {
    font-size: 28px;
  }
}

.service-details .service-main-content .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-details .service-main-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.service-details .service-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}

.service-details .service-benefits li {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.service-details .service-benefits li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-tabs {
  margin-top: 80px;
}

.service-details .service-tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 0;
  }
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  padding: 15px 25px;
  border-radius: 0;
  color: var(--default-color);
  font-weight: 600;
  background: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content {
  padding: 40px;
  border-radius: 0;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-tabs .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .service-tabs .tab-content .feature-item {
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 0;
  height: 100%;
  transition: transform 0.3s;
}

.service-details .service-tabs .tab-content .feature-item:hover {
  transform: translateY(-5px);
}

.service-details .service-tabs .tab-content .feature-item i {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-details .service-tabs .tab-content .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.service-details .service-testimonial {
  margin-top: 80px;
}

.service-details .service-testimonial .testimonial-card {
  padding: 40px;
  border-radius: 0;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-testimonial .testimonial-card .client-info {
  text-align: center;
}

.service-details .service-testimonial .testimonial-card .client-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 5px solid var(--background-color);
  margin-right: 20px;
}

@media (max-width: 767px) {
  .service-details .service-testimonial .testimonial-card .client-info img {
    margin: 0 auto 20px;
  }
}

.service-details .service-testimonial .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
  color: #FFD700;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
  position: relative;
  padding-left: 30px;
}

.service-details .service-testimonial .testimonial-card .quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-testimonial .testimonial-card .quote p {
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-cta {
  margin-top: 80px;
  padding: 60px;
  border-radius: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.service-details .service-cta p {
  font-size: 18px;
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-details .service-cta .btn-service {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 0;
  transition: all 0.3s;
}

.service-details .service-cta .btn-service i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-details .service-cta .btn-service:hover {
  background: var(--background-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-cta .btn-service:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .service-details .service-cta {
    padding: 40px 20px;
  }

  .service-details .service-cta h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .service-details .service-main-content {
    margin-top: 30px;
  }

  .service-details .service-tabs {
    margin-top: 50px;
  }

  .service-details .service-testimonial,
  .service-details .service-cta {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .service-details .client-info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .service-details .service-tabs .tab-content {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-showcase {
  margin-bottom: 3rem;
}

.portfolio-details .portfolio-showcase .main-image {
  margin-bottom: 1.5rem;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .main-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.portfolio-details .portfolio-showcase .main-image img:hover {
  transform: scale(1.02);
}

.portfolio-details .portfolio-showcase .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 767px) {
  .portfolio-details .portfolio-showcase .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img:hover {
  transform: scale(1.1);
}

.portfolio-details .portfolio-description {
  margin-bottom: 2rem;
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-description h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .portfolio-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.portfolio-details .sidebar {
  position: sticky;
  top: 30px;
}

.portfolio-details .portfolio-info {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0;
  padding: 25px;
  margin-bottom: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .portfolio-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul li:last-child {
  border-bottom: 0;
}

.portfolio-details .portfolio-info ul li span {
  font-weight: 600;
  color: var(--heading-color);
  margin-right: 7px;
}

.portfolio-details .portfolio-info ul li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.portfolio-details .portfolio-info ul li a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.portfolio-details .portfolio-info ul li.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 10px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.portfolio-details .portfolio-info .btn-github {
  padding: 10px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  border-radius: 0;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-github i {
  margin-right: 5px;
}

.portfolio-details .portfolio-info .btn-github:hover {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-2px);
}

.portfolio-details .client-testimonial {
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 0;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .client-testimonial .testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.portfolio-details .client-testimonial .testimonial-content p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
  margin: 0;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left,
.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 22px;
  line-height: 0;
  vertical-align: middle;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left {
  margin-right: 5px;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  margin-left: 5px;
}

.portfolio-details .client-testimonial .client-info {
  display: flex;
  align-items: center;
}

.portfolio-details .client-testimonial .client-info .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio-details .client-testimonial .client-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.portfolio-details .client-testimonial .client-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-challenges {
  background-color: var(--surface-color);
  border-radius: 0;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .project-challenges h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.portfolio-details .project-challenges h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .project-challenges ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .project-challenges ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.portfolio-details .project-challenges ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.portfolio-details .additional-context {
  background-color: color-mix(in srgb, var(--background-color), black 3%);
  border-radius: 0;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .additional-context h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.portfolio-details .additional-context h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .additional-context p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portfolio-details .additional-context p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Careers Page Styles
--------------------------------------------------------------*/
.careers-page .page-title {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a1f4d 100%);
  padding: 120px 0 80px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.careers-page .page-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(50, 168, 76, 0.15) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.5; }
}

.careers-page .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-tertiary) 25%, 
    var(--accent-teal) 50%, 
    var(--accent-tertiary) 75%, 
    transparent 100%);
  box-shadow: 0 0 20px rgba(50, 168, 76, 0.5);
}

.careers-page .page-title .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.careers-page .page-title h1 {
  color: var(--accent-color);
  font-size: 56px;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(38, 129, 246, 0.3);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.careers-page .page-title .title-description {
  font-size: 22px;
  color: var(--default-color);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  padding-bottom: 5px;
}

.careers-page .page-title .title-description::before,
.careers-page .page-title .title-description::after {
  content: 'â€œ';
  font-size: 48px;
  color: var(--accent-tertiary);
  opacity: 0.3;
  position: absolute;
  font-family: Georgia, serif;
}

.careers-page .page-title .title-description::before {
  left: -30px;
  top: -10px;
}

.careers-page .page-title .title-description::after {
  content: 'â€';
  right: -30px;
  bottom: -20px;
}

.careers-hero .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.careers-hero .benefit-item {
  display: flex;
  gap: 15px;
  align-items: start;
}

.careers-hero .benefit-item i {
  font-size: 32px;
  color: var(--accent-tertiary);
  flex-shrink: 0;
}

.careers-hero .benefit-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.careers-hero .benefit-item p {
  margin: 0;
  color: var(--default-color);
  font-size: 14px;
}

.culture-card, .perk-box {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 0;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-card:hover, .perk-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(50, 168, 76, 0.2);
}

.culture-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-teal) 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.culture-card .icon-wrapper i {
  font-size: 28px;
  color: var(--contrast-color);
}

.culture-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.culture-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
}

.perk-box {
  text-align: center;
  padding: 35px 25px;
}

.perk-box i {
  font-size: 48px;
  color: var(--accent-tertiary);
  margin-bottom: 20px;
  display: block;
}

.perk-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.perk-box p {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
}

.position-card {
  background: var(--surface-color);
  padding: 35px;
  border-radius: 0;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-tertiary);
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(50, 168, 76, 0.3);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.position-header h3 {
  font-size: 24px;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
}

.badge-type {
  background: var(--accent-tertiary);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-featured {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
}

.position-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--default-color);
}

.position-meta i {
  color: var(--accent-tertiary);
}

.position-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.skills-tags span {
  background: rgba(50, 168, 76, 0.1);
  color: var(--accent-tertiary);
  padding: 6px 14px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-teal) 100%);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-apply:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(50, 168, 76, 0.4);
  color: var(--contrast-color);
}

.spontaneous-application {
  background: linear-gradient(135deg, rgba(50, 168, 76, 0.1) 0%, rgba(50, 168, 93, 0.1) 100%);
  border-radius: 0;
  border: 2px dashed var(--accent-tertiary);
}

.spontaneous-application h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quality-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.quality-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-teal) 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.quality-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.quality-content p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
}

.contact-cta {
  background: linear-gradient(135deg, rgba(50, 168, 76, 0.05) 0%, rgba(50, 168, 93, 0.05) 100%);
  padding: 80px 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .careers-page .page-title {
    padding: 80px 0 50px;
  }

  .careers-page .page-title h1 {
    font-size: 36px;
  }

  .careers-page .page-title .title-description {
    font-size: 18px;
  }

  .careers-page .page-title .title-description::before,
  .careers-page .page-title .title-description::after {
    display: none;
  }
  
  .careers-hero .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .position-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-posts .blog-post-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-posts .blog-post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.2);
  border-color: var(--accent-color);
}

.blog-posts .blog-post-card .post-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.blog-posts .blog-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-posts .blog-post-card:hover .post-image img {
  transform: scale(1.1);
}

.blog-posts .blog-post-card .post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.blog-posts .blog-post-card .post-content {
  padding: 30px;
}

.blog-posts .blog-post-card .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #fd17b5;
}

.blog-posts .blog-post-card .post-meta i {
  color: #8a18b6;
}

.blog-posts .blog-post-card .post-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-posts .blog-post-card .post-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-posts .blog-post-card .post-title a:hover {
  color: var(--accent-color);
}

.blog-posts .blog-post-card .post-excerpt {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-posts .blog-post-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-posts .blog-post-card .read-more:hover {
  gap: 8px;
  color: var(--accent-secondary);
}

.blog-posts .blog-post-card .read-more i {
  transition: transform 0.3s ease;
}

.blog-posts .blog-post-card .read-more:hover i {
  transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-sidebar .widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
}

.blog-sidebar .search-widget .search-form {
  position: relative;
}

.blog-sidebar .search-widget input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.blog-sidebar .search-widget input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 129, 246, 0.1);
}

.blog-sidebar .search-widget button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
}

.blog-sidebar .categories-widget ul li {
  margin-bottom: 12px;
}

.blog-sidebar .categories-widget ul li a {
  color: var(--default-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.blog-sidebar .categories-widget ul li a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.blog-sidebar .categories-widget .count {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 13px;
}

.blog-sidebar .recent-posts-widget .recent-post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-sidebar .recent-posts-widget .recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-sidebar .recent-posts-widget .recent-post-link {
  text-decoration: none;
}

.blog-sidebar .recent-posts-widget h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.blog-sidebar .recent-posts-widget .recent-post-link:hover h6 {
  color: var(--accent-color);
}

.blog-sidebar .recent-posts-widget .post-date {
  font-size: 13px;
  color: #fd17b5;
}

.blog-sidebar .newsletter-widget p {
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 15px;
}

.blog-sidebar .newsletter-widget input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: var(--background-color);
  color: var(--default-color);
}

.blog-sidebar .cta-widget {
  background: var(--gradient-primary);
  border: none;
}

.blog-sidebar .cta-widget .cta-content {
  color: var(--contrast-color);
}

.blog-sidebar .cta-widget h5 {
  color: var(--contrast-color);
}

.blog-sidebar .cta-widget p {
  color: rgba(255, 255, 255, 0.9);
}

.blog-sidebar .cta-widget i {
  color: var(--contrast-color);
}

/* Blog Single Post */
.blog-single-post {
  padding: 60px 0;
}

.blog-single-post .blog-post-single {
  background: var(--surface-color);
  padding: 50px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-single-post .post-header .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.blog-single-post .post-header .post-meta span:not(.badge) {
  color: #fd17b5 !important;
}

.blog-single-post .post-header .post-meta span i {
  color: #8a18b6;
}

.blog-single-post .post-header .lead {
  color: #e0b3ff !important;
}

.blog-single-post .post-title {
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 0;
}

.blog-single-post .post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
}

.blog-single-post .post-content h2 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
}

.blog-single-post .post-content h3 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 24px;
}

.blog-single-post .post-content p {
  margin-bottom: 20px;
}

.blog-single-post .post-content ul,
.blog-single-post .post-content ol {
  margin-bottom: 25px;
}

.blog-single-post .post-content ul li,
.blog-single-post .post-content ol li {
  margin-bottom: 10px;
}

.blog-single-post .post-footer .post-tags .badge {
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 8px 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog-posts .blog-post-card .post-image {
    height: 220px;
  }
  
  .blog-posts .blog-post-card .post-content {
    padding: 20px;
  }
  
  .blog-posts .blog-post-card .post-title {
    font-size: 22px;
  }
  
  .blog-single-post .blog-post-single {
    padding: 30px 20px;
  }
  
  .blog-single-post .post-title {
    font-size: 28px !important;
  }
}

/*--------------------------------------------------------------
# Service Page Enhanced Components
--------------------------------------------------------------*/
.service-details .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.15), rgba(138, 24, 182, 0.15));
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Why Choose Cards */
.service-details .why-choose-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.15);
  border-color: var(--accent-color);
}

.service-details .why-choose-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-details .why-choose-card .icon-box i {
  font-size: 28px;
  color: var(--contrast-color);
}

.service-details .why-choose-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.service-details .why-choose-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

/* Platform Cards */
.service-details .platform-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.15);
  border-color: var(--accent-color);
}

.service-details .platform-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.service-details .platform-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-details .platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-details .platform-features li {
  padding: 8px 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details .platform-features li i {
  color: var(--accent-color);
  font-size: 18px;
}

/* Pricing Cards */
.service-details .pricing-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.service-details .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.15);
  border-color: var(--accent-color);
}

.service-details .pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
  z-index: 2;
}

.service-details .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.service-details .pricing-card .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8a18b6, #2681f6);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-details .pricing-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .pricing-header .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.service-details .pricing-header .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .pricing-header .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.service-details .pricing-header .period {
  font-size: 16px;
  color: var(--default-color);
}

.service-details .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-details .pricing-features li {
  padding: 12px 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .pricing-features li:last-child {
  border-bottom: none;
}

.service-details .pricing-features li i {
  color: #32a84c;
  font-size: 18px;
}

.service-details .btn-pricing {
  display: block;
  text-align: center;
  padding: 14px 30px;
  background: linear-gradient(135deg, #2681f6, #8a18b6);
  color: var(--contrast-color);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-details .btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 129, 246, 0.3);
  color: var(--contrast-color);
}

/* Technology/Tool Cards */
.service-details .tech-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.service-details .tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 129, 246, 0.15);
  border-color: var(--accent-color);
}

.service-details .tech-card img {
  height: 50px;
  margin-bottom: 15px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.service-details .tech-card:hover img {
  filter: grayscale(0%);
}

.service-details .tech-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

/* Stats Cards */
.service-details .stat-card {
  background: linear-gradient(135deg, rgba(38, 129, 246, 0.1), rgba(138, 24, 182, 0.1));
  padding: 35px 25px;
  border-radius: 0;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .stat-card .stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2681f6, #8a18b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.service-details .stat-card .stat-label {
  font-size: 16px;
  color: var(--default-color);
  margin: 0;
}

/* Process Steps */
.service-details .process-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  transition: all 0.3s ease;
}

.service-details .process-step:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
}

.service-details .process-step .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2681f6, #8a18b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.service-details .process-step .step-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .process-step .step-content p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .service-details .pricing-card.featured {
    transform: scale(1);
  }
  
  .service-details .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .service-details .why-choose-card,
  .service-details .platform-card,
  .service-details .pricing-card {
    padding: 30px 20px;
  }
  
  .service-details .pricing-header .amount {
    font-size: 36px;
  }
  
  .service-details .process-step {
    flex-direction: column;
    text-align: center;
  }
}


/* --- SURGICAL AESTHETICS - 90 DEGREE ANGLES GLOBAL OVERRIDE --- */
* {
  border-radius: 0 !important;
}

/* --- NAVEGACIÓN ACTUALIZADA --- */
.header .navmenu ul li a {
  color: rgba(135, 206, 250, 0.9); /* Brighter color */
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 1.15rem; 
  font-weight: 600;
  padding: 18px 15px;
}

.header .navmenu ul li a:hover,
.header .navmenu ul li a.active {
  color: #00ffff; /* Very bright cyan */
}


