@charset "utf-8";

/* Variables globales unificadas */
:root {
    /* Tipografías */
    --default-font: "Funnel Sans", sans-serif;
    --heading-font: "Funnel Display", sans-serif;
    --nav-font: "Funnel Sans", sans-serif;
    /* Paleta corporativa */
    --background-color: #f8f9fa;
    /* Gris claro para profundidad */
    --default-color: #000;
    /* Color de texto principal */
    --heading-color: #1a252f;
    /* Slate oscuro para encabezados */
    --accent-color: #000;
    --accent-green: #54FE0C;
    --accent-color-rgb: 0, 0, 0;
    --surface-color: #fff;
    --contrast-color: #fff;
    /* Variables de UI */
    --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    --border-radius-card: 12px;
    /* Colores de navegación */
    --nav-color: #000000;
    --nav-hover-color: var(--accent-green);
    --nav-mobile-background-color: #fff;
    --nav-dropdown-background-color: #fff;
    --nav-dropdown-color: #2c3e50;
    --nav-dropdown-hover-color: var(--accent-green);
    /* Header background - Efecto vidrio (glassmorphism) */
    --header-background-color: rgba(255, 255, 255, 0.1);
    /* Comportamiento de scroll */
    scroll-behavior: smooth
}

/* Presets de color */
.light-background {
    --background-color: #f8f9fa;
    --surface-color: #fff
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    line-height: 1.7;
    /* Mejora la legibilidad */
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-green), transparent 25%);
    text-decoration: none
}

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

/* Accesibilidad: estilos de foco visible para navegación por teclado (WCAG 2.4.7) */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header, Navigation Menu & Footer
# → Estilos movidos a assets/css/layout.css
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

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

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-green), transparent 20%);
    color: var(--contrast-color)
}

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

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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 78px;
    overflow: hidden;
    /* Fallback para navegadores sin soporte de clip */
    overflow: clip
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 60px
    }
}

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

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

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

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

/* ==========================================
   Parallax Effect Integration
   ========================================== */

/* Wrapper to contain the parallax sections */
.parallax-new-wrapper {
    width: 100%;
    position: relative;
    /* Ensure it takes up space so we can scroll through it */
}

/* The Top "Mountain" Section */
.parallax-new-top {
    background: #fff;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Positioning helper for layers */
.parallax-new-section {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/* Images Styling */
.parallax-new-image {
    height: 100vmax;
    left: calc(50% - 75vmax);
    width: 150vmax;
    top: calc(50% - 50vmax);
    position: absolute;
    pointer-events: none;
    /* Let clicks pass through */
}

.parallax-new-image2 {
    /* Background Image */
    background-image: url(../img/parallax-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: var(--opacity, 1);
    transform: scale(var(--scale, 1.25));
    /* will-change: transform, opacity; Optimization */
}

.parallax-new-image1 {
    /* Foreground Image */
    background-image: url(../img/parallax-fg.webp);
    background-size: cover;
    background-position: center;

    z-index: 15;
}

/* Title Styling */
.parallax-new-top-title {
    /* Colores y tipografía */
    color: white;
    font-family: var(--heading-font);
    font-weight: 800;
    /* Tamaño responsivo: mínimo 2rem, preferido 10vmax, máximo 12rem */
    font-size: clamp(2rem, 10vmax, 12rem);
    /* Espaciado entre caracteres relativo a la ventana */
    letter-spacing: 0.1vmax;

    /* Posicionamiento y diseño */
    position: absolute;
    /* Centro vertical */
    top: 50%;
    left: 50%;
    text-align: center;

    /* Animaciones parallax: desplazamiento vertical (--moveY) y escala (--scale) 
       Centrado absoluto usando traslaciones individuales para evitar que el minificador
       rompa los espacios en la función calc() */
    transform: translate(-50%, -50%) translateY(-18vh) translateY(var(--moveY, 0px)) scale(var(--scale, 1));

    width: 100%;
    z-index: 10;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.parallax-new-top-subtitle {
    /* Colores y tipografía */
    color: var(--accent-green);
    font-family: var(--heading-font);
    /* Tamaño responsivo: mínimo 1rem, preferido 2.5vmax, máximo 3rem */
    font-size: clamp(1rem, 2.5vmax, 3rem);
    font-weight: 500;

    /* Posicionamiento y diseño */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    letter-spacing: 0.1vmax;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    text-align: center;
    z-index: 11;
    white-space: normal;
    overflow: visible;

    /* Animaciones parallax: se mueve y escala con el título durante scroll 
       Acomodado debajo del título (offset distinto al título, ej. 2vh) */
    transform: translate(-50%, -50%) translateY(-2vh) translateY(var(--moveY, 0px)) scale(var(--scale, 1));
}

@media (max-width: 677px) {
    .parallax-new-top-title {
        font-size: 15vw;
        letter-spacing: 0;
        transform: translate(-50%, -50%) translateY(-18vh) translateY(var(--moveY, 0px)) scale(var(--scale, 1));
    }

    .parallax-new-top-subtitle {
        font-size: clamp(1rem, 5vw, 1.8rem);
        white-space: normal;
        padding: 0 12px;
        letter-spacing: 0;
        transform: translate(-50%, -50%) translateY(-2vh) translateY(var(--moveY, 0px)) scale(var(--scale, 1));
    }
}

/* The Bottom Section (Content revealed below) */
.parallax-new-bottom {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 20;
    /* Ensure it sits on top of everything when scrolling */
    background: var(--background-color);
    /* Match site bg */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
    /* Mantenemos un color oscuro de base por si la imagen tarda en cargar */
    background: #000;
    position: relative;
    overflow: hidden;
    /* min-height en lugar de height fijo: permite que la sección crezca en móvil
       cuando el contenido apilado (texto + imagen) supera 100vh */
    min-height: 100vh;
    /* Centrado vertical del contenido en pantallas grandes */
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent url(../img/bg/abstract-bg-1.webp) center center/cover no-repeat;
    z-index: 1
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    /* Ocupa todo el ancho disponible dentro del flex container */
    width: 100%;
}





.hero .hero-content .content {
    padding: 80px 0
}

.hero .hero-content .content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff
}

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

.hero .hero-content .content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, #fff, transparent 20%);
    margin-bottom: 3rem;
    max-width: 90%
}

.hero .hero-content .content .cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.hero .hero-content .content .cta-group .btn-primary {
    background: var(--accent-green);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block
}

.hero .hero-content .content .cta-group .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-green), black 10%);
    transform: translatey(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-green), transparent 70%)
}

.hero .hero-content .content .cta-group .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease
}

.hero .hero-content .content .cta-group .btn-secondary i {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
    color: var(--accent-green)
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
    transform: scale(1.1)
}

.hero .hero-content .hero-image {
    position: relative;
    padding: 80px 0
}

.hero .hero-content .hero-image img {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    width: 100%;
    height: auto;
    transition: all 0.5s ease
}

.hero .hero-content .hero-image:hover img {
    border-radius: 70% 30% 30% 70%/70% 70% 30% 30%
}

.hero .hero-content .hero-image .floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

@media (max-width: 768px) {
    .hero .hero-content .hero-image .floating-card {
        left: 20px;
        bottom: 20px;
        padding: 1.5rem
    }
}

.hero .hero-content .hero-image .floating-card .card-content {
    display: flex;
    gap: 2rem
}

@media (max-width: 576px) {
    .hero .hero-content .hero-image .floating-card .card-content {
        flex-direction: column;
        gap: 1rem
    }
}

.hero .hero-content .hero-image .floating-card .metric {
    text-align: center
}

.hero .hero-content .hero-image .floating-card .metric .number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1
}

.hero .hero-content .hero-image .floating-card .metric .label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.25rem
}

@media (max-width: 992px) {

    /* En móvil el contenido se apila: eliminamos el min-height rígido
       para que la sección crezca con el contenido sin recortar la imagen */
    .hero {
        min-height: auto;
        align-items: flex-start;
    }

    .hero .hero-content .content {
        text-align: center;
        padding: 60px 0 30px;
    }

    .hero .hero-content .content p {
        max-width: 100%
    }

    .hero .hero-content .hero-image {
        padding: 20px 0 50px;
    }
}

/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
.features {
    background: var(--surface-color);
    padding: 4rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.features .feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease
}

.features .feature-item:hover {
    transform: translatey(-5px)
}

.features .feature-item .icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease
}


.features .feature-item .icon i {
    font-size: 2rem;
    color: var(--accent-color)
}

.features .feature-item h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--heading-color)
}

.features .feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0
}

.features .feature-item:hover .icon {
    background: var(--accent-green);
    /* transform: scale(1.1) */
    transform: rotate(8deg) scale(1.2);
    transition: all 0.4s ease;
}

.features .feature-item:hover .icon i {
    color: var(--contrast-color)
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* =========================================
   3D FLIP CARDS (Estilo Kallyas Adaptado)
   ========================================= */
.square-flip {
    -webkit-perspective: 1000px;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    /* Ancho 100% para adaptarse a la columna Bootstrap */
    width: 100%;
    /* Altura fija necesaria para el efecto 3D */
    height: 420px;
    cursor: pointer
}

.square,
.square2 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    /* Redondeado igual que tu diseño original */
}

/* --- Cara Frontal --- */
.square-flip .square {
    transform: rotatey(0deg);
    z-index: 2
}

.square-flip:hover .square {
    transform: rotatey(-180deg)
}

/* --- Cara Trasera --- */
.square-flip .square2 {
    transform: rotatey(180deg);
    z-index: 1
}

.square-flip:hover .square2 {
    transform: rotatey(0deg)
}

/* --- Contenedores de Texto (Animación de desplazamiento) --- */
.square-container {
    padding: 30px;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translatey(-50%) translatex(0) scale(1);
    transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
    z-index: 2
}

.square-flip:hover .square-container {
    /* El texto frontal sale volando a la izquierda */
    transform: translatey(-50%) translatex(-650px) scale(0.88)
}

.square-container2 {
    padding: 30px;
    text-align: center;
    position: relative;
    top: 50%;
    /* El texto trasero espera a la derecha */
    transform: translatey(-50%) translatex(650px) translatez(60px) scale(0.88);
    transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
    z-index: 2
}

.square-flip:hover .square-container2 {
    /* El texto trasero entra al centro */
    transform: translatey(-50%) translatex(0) translatez(0) scale(1)
}

/* --- Estilos de Texto y Elementos --- */
.square-flip h2 {
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 26px;
    margin-top: 15px;
    margin-bottom: 10px
}

.square-flip h3 {
    color: white;
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px
}

.square-flip p.text-white {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 25px
}

/* Icono en la tarjeta 3D */
.service-icon-3d {
    font-size: 50px;
    color: var(--accent-green);
    /* Tu color de acento */
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5)
}

/* Overlay oscuro para que se lea el texto sobre la imagen */
.flip-overlay {
    display: block;
    background: rgba(0, 0, 0, 0.35);
    /* Un poco más oscuro para legibilidad */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none
}

.align-center {
    margin: 0 auto
}

/* Botón adaptado a tu estilo */
.kallyas-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--default-font);
    font-weight: 600;
    color: #000;
    background: var(--accent-green);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px
}

.kallyas-button:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(84, 254, 12, 0.6)
}

/* Sombras de texto */
.textshadow {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5)
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
    padding-right: 40px
}

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

.about .content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--heading-color)
}

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

.about .content .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: color-mix(in srgb, var(--default-color), transparent 10%)
}

.about .content .description {
    margin-bottom: 60px
}

.about .content .description p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.about .content .description p:last-child {
    margin-bottom: 0
}

.about .content .stats-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px
}

@media (max-width: 768px) {
    .about .content .stats-row {
        gap: 40px;
        flex-wrap: wrap
    }
}

@media (max-width: 576px) {
    .about .content .stats-row {
        justify-content: space-between;
        gap: 20px
    }
}

.about .content .stats-row .stat-item {
    text-align: left
}

.about .content .stats-row .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px
}

@media (max-width: 768px) {
    .about .content .stats-row .stat-item .stat-number {
        font-size: 2rem
    }
}

.about .content .stats-row .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.about .image-container {
    position: relative;
    height: 100%;
    min-height: 500px
}

@media (max-width: 992px) {
    .about .image-container {
        min-height: 400px
    }
}

.about .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px
}

.about .image-container .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    min-width: 200px;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (max-width: 576px) {
    .about .image-container .image-overlay {
        bottom: 20px;
        left: 20px;
        padding: 20px
    }
}

.about .image-container .image-overlay .overlay-content {
    display: flex;
    align-items: center;
    gap: 15px
}

.about .image-container .image-overlay .overlay-content i {
    font-size: 2rem;
    color: var(--accent-color)
}

.about .image-container .image-overlay .overlay-content .overlay-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--heading-color);
    font-weight: 500
}

.about .image-container .image-overlay .overlay-content .overlay-text p {
    margin: 0;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%)
}



.about .image-container .image-overlay:hover {
    transform: translatey(-8px);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 80%)
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
    --skill-spacing: 40px;
    --icon-size: 60px;
    --progress-height: 4px;
    --border-subtle: color-mix(in srgb, var(--default-color), transparent 90%);
    --text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
    --surface-elevated: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%)
}

.skills .intro-content {
    margin-bottom: 80px
}

.skills .intro-content .lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0
}

.skills .skills-grid {
    /* Refactored to Bootstrap Grid */
    margin-bottom: 60px
}

.skills .skill-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease
}

.skills .skill-item:hover {
    transform: translatey(-4px)
}

.skills .skill-item:hover .skill-icon i {
    color: var(--accent-green);
    transform: scale(1.1)
}

.skills .skill-item .skill-icon {
    margin-bottom: 24px
}

.skills .skill-item .skill-icon i {
    font-size: var(--icon-size);
    color: var(--text-muted);
    transition: all 0.4s ease
}

.skills .skill-item .skill-name {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.3
}

.skills .skill-item .skill-level {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px
}

.skills .skill-item .skill-level .level-text {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 90px
}

.skills .skill-item .skill-level .progress-track {
    flex: 1;
    height: var(--progress-height);
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden
}

.skills .skill-item .skill-level .progress-track .progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1)
}

.skills .skill-item .skill-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0
}

.skills .certification-area {
    padding-top: 60px;
    border-top: 1px solid var(--border-subtle)
}

.skills .certification-area .cert-content .cert-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--heading-color)
}

.skills .certification-area .cert-content .cert-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px
}

.skills .certification-area .cert-content .cert-list .cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-subtle)
}

.skills .certification-area .cert-content .cert-list .cert-item:last-child {
    border-bottom: none
}

.skills .certification-area .cert-content .cert-list .cert-item i {
    color: var(--accent-color);
    font-size: 20px
}

.skills .certification-area .cert-content .cert-list .cert-item span {
    font-size: 16px;
    color: var(--default-color)
}

.skills .certification-area .tools-showcase .tools-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--heading-color)
}

.skills .certification-area .tools-showcase .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag {
    padding: 8px 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 14px;
    color: var(--default-color);
    transition: all 0.3s ease
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--accent-color)
}

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

    .skills .skill-item {
        padding: 28px 0
    }

    .skills .skill-item .skill-name {
        font-size: 22px
    }

    .skills .cert-content .cert-title {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .skills {
        --skill-spacing: 24px;
        --icon-size: 50px
    }

    .skills .intro-content {
        margin-bottom: 60px
    }

    .skills .intro-content .lead-text {
        font-size: 18px
    }

    .skills .certification-area {
        padding-top: 40px
    }

    .skills .certification-area .tools-showcase {
        margin-top: 40px
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-headline {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em
}

.stats .section-description {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto
}

.stats .stats-container {
    /* Refactored to Bootstrap Grid */
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-color)
}

.stats .stat-item {
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease
}

.stats .stat-item:nth-child(1) {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.stats .stat-item:nth-child(2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.stats .stat-item:nth-child(3) {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.stats .stat-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    transform: translatey(-2px)
}

.stats .stat-item .stat-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.stats .stat-item .stat-number {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em
}

.stats .stat-item .stat-number .purecounter {
    font-size: inherit;
    color: inherit
}

.stats .stat-item .stat-divider {
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin: 0 auto 1.5rem auto;
    opacity: 0.6
}

.stats .stat-item .stat-label {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.01em
}

.stats .stat-item .stat-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    max-width: 200px
}

.stats .achievement-badge {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease
}

.stats .achievement-badge:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    transform: translatey(-3px)
}

.stats .achievement-badge .badge-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.8
}

.stats .achievement-badge .badge-title {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.01em
}

.stats .achievement-badge .badge-text {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto
}

@media (max-width: 992px) {
    .stats .section-headline {
        font-size: 2.25rem
    }

    .stats .stats-container {
        gap: 0
    }

    .stats .stat-item {
        padding: 2.5rem 2rem
    }

    .stats .stat-item .stat-number {
        font-size: 3rem
    }

    .stats .stat-item .stat-description {
        font-size: 0.9rem
    }
}

@media (max-width: 768px) {
    .stats .section-headline {
        font-size: 1.875rem
    }

    .stats .section-description {
        font-size: 1rem
    }

    .stats .stats-container {
        grid-template-columns: 1fr
    }

    .stats .stat-item {
        padding: 2rem 1.5rem
    }

    .stats .stat-item:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
    }

    .stats .stat-item:nth-child(2) {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
    }

    .stats .stat-item:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
    }

    .stats .stat-item:nth-child(4) {
        border-bottom: none
    }

    .stats .stat-item .stat-number {
        font-size: 2.75rem
    }

    .stats .stat-item .stat-description {
        max-width: 300px
    }

    .stats .achievement-badge {
        padding: 2rem 1.5rem
    }

    .stats .achievement-badge .badge-icon {
        font-size: 2rem
    }

    .stats .achievement-badge .badge-title {
        font-size: 1.25rem
    }

    .stats .achievement-badge .badge-text {
        font-size: 0.95rem
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scalex(0);
    transform-origin: left;
    transition: transform 0.4s ease
}

.testimonials .testimonial-item:hover {
    border-color: var(--accent-color)
}

.testimonials .testimonial-item:hover::before {
    transform: scalex(1)
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05)
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--accent-color);
    transform: scale(1.1)
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%)
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem
}

.testimonials .testimonial-body {
    padding: 0 30px 20px
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
    content: "\"";
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute
}

.testimonials .testimonial-body p::before {
    top: -5px;
    left: -10px
}

.testimonials .testimonial-body p::after {
    bottom: -20px;
    right: -5px
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
    margin-bottom: 15px
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    transform: scale(1.2)
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600
}

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem
    }

    .testimonials .swiper-navigation {
        margin-top: 10px
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
    text-align: center;
    margin-bottom: 80px
}

.portfolio .portfolio-filters {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative
}

.portfolio .portfolio-filters::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 90%)
}

.portfolio .portfolio-filters li {
    position: relative;
    cursor: pointer;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.4s ease-out;
    letter-spacing: 0.5px
}

.portfolio .portfolio-filters li::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s ease-out;
    transform: translatex(-50%)
}

.portfolio .portfolio-filters li:hover {
    color: var(--default-color)
}

.portfolio .portfolio-filters li.filter-active {
    color: var(--default-color)
}

.portfolio .portfolio-filters li.filter-active::after {
    width: 100%
}

@media (max-width: 768px) {
    .portfolio .portfolio-filters {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center
    }
}

.portfolio .portfolio-card {
    background: var(--surface-color);
    transition: all 0.4s ease-out;
    overflow: hidden
}

.portfolio .portfolio-card:hover {
    transform: translatey(-8px)
}

.portfolio .portfolio-card:hover .image-container img {
    transform: scale(1.3)
}

.portfolio .portfolio-card:hover .overlay {
    opacity: 1;
    visibility: visible
}

.portfolio .portfolio-card:hover .content h3 {
    color: var(--accent-color)
}

.portfolio .image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 8px
}

.portfolio .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out
}

.portfolio .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

.portfolio .image-container .overlay-content {
    display: flex;
    gap: 20px;
    transform: translatey(20px);
    transition: transform 0.4s ease-out 0.1s
}

.portfolio .portfolio-card:hover .image-container .overlay-content {
    transform: translatey(0)
}

.portfolio .image-container .overlay-content a {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px
}

.portfolio .image-container .overlay-content a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.2)
}

.portfolio .content {
    padding: 30px 0;
    text-align: center
}

.portfolio .content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px
}

.portfolio .content p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px
}

@media (min-width: 992px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width: 1200px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.faq .faq-item:last-child {
    border-bottom: none
}

.faq .faq-item.faq-active .faq-header .faq-number {
    color: var(--accent-color);
    font-weight: 500
}

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

.faq .faq-item.faq-active .faq-header .faq-toggle {
    color: var(--accent-color);
    transform: rotate(0deg)
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
    opacity: 0;
    transform: rotate(90deg)
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
    opacity: 1;
    transform: rotate(0deg)
}

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

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
    opacity: 1;
    transform: rotate(0deg)
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
    opacity: 0;
    transform: rotate(-90deg)
}

.faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    padding: 40px 0;
    cursor: pointer;
    gap: 0;
    transition: all 0.3s ease
}

.faq .faq-item .faq-header:hover .faq-number {
    transform: scale(1.1)
}

.faq .faq-item .faq-header:hover .faq-toggle {
    transform: scale(1.1)
}

.faq .faq-item .faq-header .faq-number {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: all 0.3s ease;
    letter-spacing: -0.02em
}

.faq .faq-item .faq-header h4 {
    flex: 1;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--heading-color);
    transition: all 0.3s ease;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-right: 20px
}

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

.faq .faq-item .faq-header .faq-toggle i {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

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

.faq .faq-item .faq-content .content-inner p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300
}

@media (max-width: 768px) {
    .faq .faq-item .faq-header {
        padding: 30px 0
    }

    .faq .faq-item .faq-header .faq-number {
        width: 60px;
        font-size: 1rem
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1.1rem;
        margin-right: 15px
    }

    .faq .faq-item .faq-header .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 16px
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.95rem
    }
}

@media (max-width: 576px) {
    .faq .faq-item .faq-header {
        padding: 25px 0
    }

    .faq .faq-item .faq-header .faq-number {
        width: 50px;
        font-size: 0.9rem
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1rem;
        margin-right: 10px
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.9rem
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
    padding: 60px 0
}

.contact .contact-form-container .form-intro {
    margin-bottom: 60px
}

.contact .contact-form-container .form-intro h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--heading-color);
    letter-spacing: -0.5px
}

@media (max-width: 768px) {
    .contact .contact-form-container .form-intro h2 {
        font-size: 28px
    }
}

.contact .contact-form-container .form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 0;
    opacity: 0.85
}

.contact .contact-form-container .contact-form .row {
    margin-bottom: 40px
}

.contact .contact-form-container .contact-form .row:last-of-type {
    margin-bottom: 0
}

.contact .contact-form-container .contact-form .form-field {
    position: relative;
    margin-bottom: 40px
}

.contact .contact-form-container .contact-form .form-field.message-field {
    margin-bottom: 50px
}

.contact .contact-form-container .contact-form .form-field .field-label {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8
}

.contact .contact-form-container .contact-form .form-field .form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background: transparent;
    padding: 20px 0 15px 0;
    font-size: 16px;
    color: var(--default-color);
    transition: all 0.3s ease
}

.contact .contact-form-container .contact-form .form-field .form-input:focus:not(:focus-visible) {
    outline: none;
    /* Oculta outline solo para clics de ratón */
    border-bottom-color: var(--accent-color);
    background: transparent
}

.contact .contact-form-container .contact-form .form-field .form-input:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-bottom-color: var(--accent-color);
    background: transparent
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    opacity: 1
}

.contact .contact-form-container .contact-form .form-field .message-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    padding-top: 25px
}

.contact .contact-form-container .contact-form .send-button {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease
}

.contact .contact-form-container .contact-form .send-button:hover {
    background: var(--accent-color);
    color: var(--contrast-color)
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
    transform: translatex(5px)
}

.contact .contact-sidebar {
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    height: 100%;
    padding: 60px 40px
}

.contact .contact-sidebar .contact-header {
    margin-bottom: 60px
}

.contact .contact-sidebar .contact-header h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--heading-color);
    letter-spacing: -0.3px
}

.contact .contact-sidebar .contact-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 0;
    opacity: 0.85
}

.contact .contact-sidebar .contact-methods {
    margin-bottom: 60px
}

.contact .contact-sidebar .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px
}

.contact .contact-sidebar .contact-method:last-child {
    margin-bottom: 0
}

.contact .contact-sidebar .contact-method .contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color)
}

.contact .contact-sidebar .contact-method .contact-icon i {
    font-size: 20px
}

.contact .contact-sidebar .contact-method .contact-details {
    flex: 1
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px
}

.contact .contact-sidebar .contact-method .contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--default-color);
    margin-bottom: 0
}

.contact .contact-sidebar .connect-section {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 40px
}

.contact .contact-sidebar .connect-section .connect-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px
}

.contact .contact-sidebar .connect-section .social-links {
    display: flex;
    gap: 15px
}

.contact .contact-sidebar .connect-section .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
    font-size: 16px
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
    color: var(--accent-color);
    transform: translatey(-2px)
}

@media (max-width: 992px) {
    .contact .contact-form-container {
        padding: 40px 0
    }

    .contact .contact-sidebar {
        padding: 40px 30px;
        margin-bottom: 40px
    }
}

@media (max-width: 768px) {
    .contact .contact-form-container .form-intro {
        margin-bottom: 40px;
        text-align: center
    }

    .contact .contact-form-container .contact-form .row {
        margin-bottom: 20px
    }

    .contact .contact-form-container .contact-form .form-field {
        margin-bottom: 30px
    }

    .contact .contact-sidebar {
        padding: 30px 25px
    }

    .contact .contact-sidebar .contact-header,
    .contact .contact-sidebar .contact-methods {
        margin-bottom: 40px
    }

    .contact .contact-sidebar .contact-method {
        margin-bottom: 30px
    }
}