/* CodAlea Home Page Styles */

/* Geek Cursor and Scrollbar Styles */
* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><defs><filter id="glow"><feGaussianBlur stdDeviation="2" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><path d="M2 2l6 14 2-5 5-2L2 2z" fill="%23ffffff" stroke="%2306b6d4" stroke-width="1" filter="url(%23glow)"/><circle cx="3" cy="3" r="1" fill="%2300ff41"/></svg>'), auto;
}

a, button, .clickable, .nav-link, .btn {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><defs><filter id="glow"><feGaussianBlur stdDeviation="1" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><circle cx="10" cy="10" r="8" fill="none" stroke="%2306b6d4" stroke-width="2" filter="url(%23glow)"/><path d="M7 10l2 2 4-4" stroke="%2300ff41" stroke-width="2" fill="none"/><circle cx="10" cy="10" r="2" fill="%23ffffff"/></svg>'), pointer;
}

code, pre, .console-input, .retro-console-container, input[type="text"], textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><defs><filter id="glow"><feGaussianBlur stdDeviation="1" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><rect x="1" y="1" width="18" height="18" fill="%23000000" stroke="%2300ff41" stroke-width="1" rx="2"/><path d="M4 6l4 3-4 3" stroke="%2306b6d4" stroke-width="2" fill="none" filter="url(%23glow)"/><line x1="10" y1="12" x2="16" y2="12" stroke="%2300ff41" stroke-width="2"/></svg>'), text;
}

/* Custom Scrollbar - Matrix/Geek Style */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(45deg, #0f0f0f, var(--codalea-dark));
    border-radius: 7px;
    border: 1px solid #333;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        #1e293b 0%, 
        #2563eb 25%, 
        #06b6d4 50%, 
        #8b5cf6 75%, 
        #1e293b 100%);
    border-radius: 7px;
    border: 2px solid #0f0f0f;
    box-shadow: 
        inset 0 0 8px rgba(0, 255, 65, 0.2),
        0 0 4px rgba(37, 99, 235, 0.3);
    position: relative;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        #334155 0%, 
        #3b82f6 25%, 
        #0891b2 50%, 
        #a855f7 75%, 
        #334155 100%);
    box-shadow: 
        inset 0 0 12px rgba(0, 255, 65, 0.4),
        0 0 8px rgba(6, 182, 212, 0.5),
        0 0 16px rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, 
        #475569 0%, 
        #2563eb 25%, 
        #06b6d4 50%, 
        #8b5cf6 75%, 
        #475569 100%);
    box-shadow: 
        inset 0 0 15px rgba(0, 255, 65, 0.6),
        0 0 12px rgba(6, 182, 212, 0.7),
        0 0 20px rgba(139, 92, 246, 0.4);
}

::-webkit-scrollbar-corner {
    background: linear-gradient(45deg, #0f0f0f, var(--codalea-dark));
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--codalea-blue) var(--codalea-dark);
}

/* Additional geek touches */
body {
    scrollbar-color: var(--codalea-blue) #0f0f0f;
}

/* Matrix-style scrollbar animation */
@keyframes matrix-glow {
    0%, 100% { box-shadow: inset 0 0 6px rgba(0, 255, 65, 0.3); }
    50% { box-shadow: inset 0 0 12px rgba(0, 255, 65, 0.6), 0 0 15px rgba(6, 182, 212, 0.3); }
}

::-webkit-scrollbar-thumb:active {
    animation: matrix-glow 1s ease-in-out;
}

.hero-section {
    background: linear-gradient(135deg, var(--codalea-dark) 0%, var(--codalea-darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Para compensar el navbar fijo */
    padding-top: 80px; /* Para mantener el contenido visible */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-section .container {
    position: relative;
    z-index: 10; /* Asegurar que el contenido esté por encima de las frases */
}

.hero-content {
    position: relative;
    z-index: 15; /* Contenido principal aún más alto */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem 3rem;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.08) 0%, 
        rgba(6, 182, 212, 0.08) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.7;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, 
        rgba(37, 99, 235, 0.15) 0%, 
        rgba(6, 182, 212, 0.10) 40%,
        transparent 70%);
    z-index: -2;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem; /* Reducido de 1.5rem a 1rem */
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.5s forwards;
    line-height: 1.1;
    letter-spacing: -0.04em;
    position: relative;
    text-align: center;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(37, 99, 235, 0.1), 
        transparent, 
        rgba(6, 182, 212, 0.1), 
        transparent);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
}

.hero-title span:first-child {
    background: linear-gradient(135deg, var(--codalea-white) 0%, var(--codalea-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 0.2rem;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(6, 182, 212, 0.8), 0 0 40px rgba(37, 99, 235, 0.4);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.8s forwards;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(37, 99, 235, 0.3), 
        rgba(6, 182, 212, 0.3), 
        rgba(37, 99, 235, 0.3));
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
    border-radius: 15px;
    z-index: -1;
    filter: blur(1px);
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.welcome-text {
    font-size: 1.05rem;
    color: #ffffff !important;
    margin-bottom: 2rem;
    transform: translateY(20px);
    animation: slideUp 1s ease-out 1.1s forwards;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: 18px;
    position: relative;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.9)),
        linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(6, 182, 212, 0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 12px 35px rgba(6, 182, 212, 0.15),
        0 5px 20px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Typewriter text styles - con mayor especificidad */
.welcome-text .typewriter-text,
.welcome-text .typewriter-text *,
.typewriter-text {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5) !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    border-right: 3px solid #06b6d4 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow: visible !important;
    animation: none !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.welcome-text .cursor,
.cursor {
    color: #06b6d4 !important;
    animation: blink 1s infinite !important;
    font-weight: normal !important;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.welcome-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(37, 99, 235, 0.1),
        transparent,
        rgba(6, 182, 212, 0.1),
        transparent
    );
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.welcome-text::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    z-index: -1;
}

.codalea-logo {
    width: 280px;
    height: auto;
    margin-bottom: 1rem; /* Reducido de 2.5rem a 1rem para menos separación */
    transform: scale(0.8);
    animation: logoAppear 1s ease-out 0.2s forwards;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.cta-button {
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    border: none;
    color: white;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 
        0 12px 35px rgba(37, 99, 235, 0.4),
        0 4px 15px rgba(6, 182, 212, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out 1.4s forwards;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(37, 99, 235, 0.3),
        transparent,
        rgba(6, 182, 212, 0.3),
        transparent
    );
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(37, 99, 235, 0.6),
        0 8px 25px rgba(6, 182, 212, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    color: white;
    background: linear-gradient(135deg, var(--codalea-cyan) 0%, var(--codalea-blue) 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-6px) scale(1.02);
    transition: all 0.1s ease;
}



.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    color: rgba(6, 182, 212, 0.4);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon .code-symbol {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    filter: blur(0.5px);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    color: rgba(6, 182, 212, 0.4);
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    color: rgba(37, 99, 235, 0.4);
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
    color: rgba(147, 51, 234, 0.4);
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 1s;
    color: rgba(16, 185, 129, 0.4);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.15; 
    }
    25% {
        transform: translateY(-10px) rotate(5deg) scale(1.05);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(0deg) scale(1.1); 
        opacity: 0.4; 
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
        opacity: 0.3;
    }
}

.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--codalea-light) 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(6, 182, 212, 0.02) 100%);
    border-radius: 25px;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.05) 0%, 
        rgba(6, 182, 212, 0.05) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--codalea-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--codalea-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-badge {
    margin-top: auto;
    padding-top: 1rem;
}

.feature-badge .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-section .lead {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--codalea-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section Modern Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--codalea-dark) 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(6, 182, 212, 0.02) 100%);
    border-radius: 25px;
    z-index: -1;
}

/* Enhanced About Section Styles */
.about-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

.expertise-highlight {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expertise-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.expertise-label {
    font-size: 0.9rem;
    color: var(--codalea-gray);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Tech Orbit Animation */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.tech-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-logo {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-logo {
    animation: rotate 8s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.5));
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: orbit 15s linear infinite;
    animation-delay: var(--delay);
    transform-origin: 150px;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
}

.orbit-item:nth-child(odd) {
    animation-direction: reverse;
}

.tech-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    animation: techPulse 3s ease-in-out infinite;
}

.tech-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit {
    from { transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(var(--angle) + 360deg)) translateX(120px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.4));
    }
}

/* Technology Category Cards */
.tech-category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.tech-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(6, 182, 212, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.tech-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.2);
}

.tech-category-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.05) 0%, 
        rgba(6, 182, 212, 0.05) 100%);
}

.tech-category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tech-category-icon.backend {
    background: linear-gradient(135deg, #512BD4 0%, #6B46C1 100%);
}

.tech-category-icon.database {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.tech-category-icon.frontend {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
}

.tech-category-icon.devops {
    background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
}

.tech-category-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    z-index: 1;
}

.tech-category-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--codalea-dark);
    margin-bottom: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag.primary {
    background: rgba(81, 43, 212, 0.1);
    color: #512BD4;
    border: 1px solid rgba(81, 43, 212, 0.2);
}

.tech-tag.success {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.tech-tag.warning {
    background: rgba(217, 119, 6, 0.1);
    color: #D97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.tech-tag.info {
    background: rgba(14, 165, 233, 0.1);
    color: #0EA5E9;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Methodology Section */
.methodology-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.methodology-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.methodology-icon.agile {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.methodology-icon.quality {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.methodology-icon.architecture {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.methodology-icon svg {
    stroke: white;
}

.methodology-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--codalea-dark);
    margin-bottom: 1rem;
}

.methodology-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.method-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.method-tag:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Skills Showcase */
.skills-showcase {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.skills-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.skills-showcase h3 {
    color: white;
    position: relative;
    z-index: 2;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(6, 182, 212, 0.5);
}

.skill-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-icon.problem-solving {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.skill-icon.analytical {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.skill-icon.teamwork {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.skill-icon.leadership {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.skill-icon.adaptability {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.skill-icon.remote {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.skill-icon svg {
    stroke: white;
}

.skill-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== EQUIRENT CLIENT SHOWCASE SECTION ===== */
.client-showcase-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.client-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Elements Animation */
.client-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-gear, .floating-car, .floating-code {
    position: absolute;
    opacity: 0.6;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.floating-gear-1 {
    top: 15%;
    left: 10%;
    animation: floatRotate 8s infinite;
}

.floating-gear-2 {
    bottom: 20%;
    right: 15%;
    animation: floatRotate 12s infinite reverse;
}

.floating-car-1 {
    top: 60%;
    left: 5%;
    animation: floatHorizontal 10s infinite;
}

.floating-code-1 {
    top: 30%;
    right: 8%;
    animation: floatVertical 6s infinite;
}

@keyframes floatRotate {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
    100% { transform: translateY(-40px) rotate(360deg); opacity: 0.4; }
}

@keyframes floatHorizontal {
    0% { transform: translateX(0px) translateY(0px); opacity: 0.5; }
    50% { transform: translateX(30px) translateY(-15px); opacity: 0.8; }
    100% { transform: translateX(60px) translateY(0px); opacity: 0.5; }
}

@keyframes floatVertical {
    0% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.9; }
    100% { transform: translateY(-50px) scale(1); opacity: 0.6; }
}

/* Client Badge */
.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    color: #60A5FA;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4); }
}

.client-badge svg {
    color: #10B981;
}

/* Section Title */
.client-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.client-section-title .gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.subtitle-accent {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #94A3B8;
    margin-top: 0.5rem;
}

.client-section-description {
    font-size: 1.1rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Project Cards */
.equirent-project-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.equirent-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equirent-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.equirent-project-card:hover::before {
    opacity: 1;
}

.project-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.project-icon.modernization {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.project-icon.integration {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.project-icon.custom {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.equirent-project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-icon svg {
    color: white;
    stroke: currentColor;
}

.project-content {
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.project-description {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93C5FD;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.equirent-project-card:hover .tech-tag {
    background: rgba(59, 130, 246, 0.3);
    color: #DBEAFE;
    transform: translateY(-2px);
}

/* Partnership Highlight */
.partnership-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.partnership-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    animation: shimmerEffect 8s infinite;
    pointer-events: none;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.partnership-logo {
    flex-shrink: 0;
}

.equirent-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    animation: logoRotate 20s linear infinite;
    position: relative;
}

.equirent-logo-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.partnership-text {
    flex: 1;
}

.partnership-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.partnership-description {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.partnership-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #94A3B8;
    margin-top: 0.5rem;
}

.visit-client-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.visit-client-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.visit-client-btn svg {
    transition: transform 0.3s ease;
}

.visit-client-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .client-section-title {
        font-size: 2.5rem;
    }
    
    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .partnership-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .client-showcase-section {
        padding: 60px 0;
    }
    
    .client-section-title {
        font-size: 2rem;
    }
    
    .subtitle-accent {
        font-size: 1.2rem;
    }
    
    .equirent-project-card {
        padding: 1.5rem;
    }
    
    .partnership-highlight {
        padding: 2rem;
    }
    
    .partnership-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Simplify floating animations on mobile */
    .floating-gear, .floating-car, .floating-code {
        opacity: 0.3;
        animation-duration: 15s;
    }
}

@media (max-width: 576px) {
    .client-section-title {
        font-size: 1.8rem;
    }
    
    .equirent-project-card {
        padding: 1.2rem;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
    }
    
    .project-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .partnership-highlight {
        padding: 1.5rem;
    }
    
    .equirent-logo-placeholder {
        width: 80px;
        height: 80px;
    }
}

/* Mejoras específicas para el SVG del editor de código en móviles */
@media (max-width: 768px) {
    .hero-section .col-lg-6:last-child {
        margin-top: 2rem; /* Espacio entre contenido y SVG en móviles */
    }
    
    .code-editor-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }
    
    .code-editor-container svg {
        max-width: 100%;
        height: auto;
        width: 400px; /* Tamaño más apropiado para tablets */
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 140px; /* Más espacio para pantallas pequeñas */
        padding-bottom: 60px;
    }
    
    .hero-section .col-lg-6:last-child {
        margin-top: 1.5rem;
    }
    
    .code-editor-container svg {
        width: 320px; /* Más pequeño para móviles */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 150px; /* Máximo espacio para pantallas extra pequeñas */
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem; /* Padding más compacto pero respirable */
        margin: 0 0.5rem; /* Margen lateral mínimo */
    }
    
    .hero-section .col-lg-6:last-child {
        margin-top: 1.5rem;
    }
    
    .code-editor-container svg {
        width: 280px; /* Aún más pequeño para pantallas muy pequeñas */
    }
}

/* Para dispositivos extra pequeños (iPhone 5/SE, etc.) */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 160px; /* Espacio extra para dispositivos muy pequeños */
        padding-bottom: 30px;
    }
    
    .hero-content {
        padding: 1.8rem 1.2rem;
        margin: 0 0.3rem;
        border-radius: 20px; /* Radio más pequeño para pantallas pequeñas */
    }
    
    .hero-title {
        font-size: 2rem; /* Título más pequeño */
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem; /* Subtítulo más pequeño */
        line-height: 1.3;
        margin-bottom: 1.3rem;
    }
    
    .welcome-text {
        font-size: 0.85rem; /* Texto de bienvenida más pequeño */
        padding: 0.8rem 1rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 24px; /* Botón más compacto */
        font-size: 0.9rem;
    }
    
    .code-editor-container svg {
        width: 260px; /* SVG más pequeño para dispositivos extra pequeños */
    }
}

@media (max-width: 320px) {
    .hero-section {
        padding-top: 170px; /* Máximo espacio para iPhone 5/SE */
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0 0.2rem;
    }
    
    .code-editor-container svg {
        width: 240px; /* SVG muy pequeño para pantallas de 320px */
    }
}

/* Mejoras para modo paisaje en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section .col-lg-6:last-child {
        margin-top: 1rem;
    }
    
    .code-editor-container svg {
        width: 300px; /* Tamaño reducido en paisaje */
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .welcome-text {
        margin-bottom: 1.5rem;
    }
}

/* Mejoras específicas para muy alta resolución */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 700px;
        padding: 5rem 4rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 520px;
    }
    
    .floating-icon svg {
        width: 70px; /* Iconos más grandes en pantallas grandes */
        height: 70px;
    }
}

/* Mejoras para accesibilidad en reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none;
        opacity: 0.05; /* Muy sutil para usuarios que prefieren menos movimiento */
    }
    
    .hero-content::after {
        animation: none;
    }
}

/* Custom scrollbar for modern look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--codalea-blue) 0%, var(--codalea-cyan) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--codalea-blue);
}

/* Code Editor Styles */
.code-editor-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: 12; /* Por encima de las frases de código */
}

.code-editor-container:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.1);
}

.code-editor-container svg {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.code-editor-container:hover svg {
    transform: translateY(-5px);
}

.code-editor-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(6, 182, 212, 0.02) 0%, 
        rgba(37, 99, 235, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Estilos para partÃ­culas de cÃ³digo flotantes mejoradas */
.code-particle {
    position: absolute;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    color: rgba(6, 182, 212, 0.6);
    pointer-events: none;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    animation: floatParticle 6s infinite linear;
    z-index: 0;
    will-change: transform;
    backface-visibility: hidden;
}

/* Estilos especÃ­ficos para diferentes tipos de partÃ­culas */
.code-particle.codalea {
    color: rgba(37, 99, 235, 0.8) !important;
    font-weight: bold !important;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.6) !important;
    font-size: 14px !important;
}

.code-particle.dotnet {
    color: rgba(147, 51, 234, 0.7) !important;
    text-shadow: 0 0 15px rgba(147, 51, 234, 0.5) !important;
    font-weight: 600 !important;
}

.code-particle.symbols {
    color: rgba(6, 182, 212, 0.7) !important;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.5) !important;
    font-size: 16px !important;
}

.code-particle.keywords {
    color: rgba(245, 158, 11, 0.7) !important;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.5) !important;
    font-style: italic;
}

.code-particle.methods {
    color: rgba(16, 185, 129, 0.7) !important;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.5) !important;
    font-family: 'Consolas', monospace !important;
}

.code-particle.patterns {
    color: rgba(239, 68, 68, 0.7) !important;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.5) !important;
    font-weight: 600 !important;
}

.code-particle.frameworks {
    color: rgba(99, 102, 241, 0.7) !important;
    text-shadow: 0 0 12px rgba(99, 102, 241, 0.5) !important;
    font-size: 11px !important;
}

.code-particle.tech {
    color: rgba(168, 85, 247, 0.7) !important;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.5) !important;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        transform: translateY(80vh) rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    85% {
        transform: translateY(20vh) rotate(270deg) scale(1);
        opacity: 0.6;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

/* Efecto de brillo para cÃ³digo activo */
.code-glow {
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
    transition: filter 0.3s ease;
}

/* AnimaciÃ³n de escritura mejorada */
@keyframes typeWriterEnhanced {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.typing-line {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #06b6d4;
    animation: typeWriterEnhanced 0.8s steps(30, end) forwards;
}

.typing-line.complete {
    border-right: none;
    animation: none;
}

/* Efecto de pulsaciÃ³n para el editor */
.code-editor-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.code-editor-container:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.1);
}

.code-editor-container svg {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.code-editor-container:hover svg {
    transform: translateY(-5px);
}

.code-editor-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(6, 182, 212, 0.02) 0%, 
        rgba(37, 99, 235, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Hero Section Floating C# .NET Code Phrases */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3; /* Más sutil */
}

.hero-particle {
    position: absolute;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(6, 182, 212, 0.25);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.15);
    animation: floatCodePhrase var(--duration, 25s) linear infinite;
    white-space: nowrap;
    user-select: none;
    filter: blur(0.5px);
}

.hero-particle:nth-child(odd) {
    color: rgba(37, 99, 235, 0.25);
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.15);
}

.hero-particle:nth-child(3n) {
    color: rgba(147, 51, 234, 0.2);
    text-shadow: 0 0 8px rgba(147, 51, 234, 0.1);
}

.hero-particle-1 { top: 15%; left: -20%; --duration: 35s; animation-delay: 0s; }
.hero-particle-2 { top: 35%; left: -30%; --duration: 40s; animation-delay: 8s; }
.hero-particle-3 { top: 55%; left: -25%; --duration: 38s; animation-delay: 15s; }
.hero-particle-4 { top: 75%; left: -20%; --duration: 42s; animation-delay: 22s; }
.hero-particle-5 { top: 25%; left: -35%; --duration: 36s; animation-delay: 30s; }
.hero-particle-6 { top: 65%; left: -28%; --duration: 44s; animation-delay: 12s; }

/* Responsive adjustments for better subtlety */
@media (max-width: 768px) {
    .hero-particles {
        opacity: 0.2;
    }
    
    .hero-particle {
        font-size: 9px;
        filter: blur(0.8px);
    }
}

@media (max-width: 576px) {
    .hero-particles {
        opacity: 0.15;
    }
    
    .hero-particle {
        font-size: 8px;
        filter: blur(1px);
    }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-particles {
        opacity: 0.05;
    }
    
    .hero-particle {
        animation: none;
        position: static;
        opacity: 0.1;
    }
}

@keyframes floatCodePhrase {
    0% {
        transform: translateX(-100px) translateY(20px) rotate(-2deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    10% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(50vw) translateY(-10px) rotate(1deg) scale(1.05);
        opacity: 0.9;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(100vw) translateY(-30px) rotate(2deg) scale(0.9);
        opacity: 0;
    }
}

/* Specific matrix lines with individual positioning and animation properties */
.matrix-line-1 {
    --delay: 0s;
    --duration: 25s;
    top: 5%;
}

.matrix-line-2 {
    --delay: 3s;
    --duration: 30s;
    top: 15%;
}

.matrix-line-3 {
    --delay: 6s;
    --duration: 22s;
    top: 25%;
}

.matrix-line-4 {
    --delay: 9s;
    --duration: 27s;
    top: 35%;
}

.matrix-line-5 {
    --delay: 12s;
    --duration: 24s;
    top: 45%;
}

.matrix-line-6 {
    --delay: 2s;
    --duration: 28s;
    top: 55%;
}

.matrix-line-7 {
    --delay: 15s;
    --duration: 20s;
    top: 65%;
}

.matrix-line-8 {
    --delay: 8s;
    --duration: 26s;
    top: 75%;
}

/* Specific floating shapes with individual positioning and animation properties */
.floating-shape-1 {
    --delay: 0s;
    --duration: 15s;
    top: 10%;
    left: 10%;
}

.floating-shape-2 {
    --delay: 2s;
    --duration: 18s;
    top: 20%;
    right: 15%;
}

.floating-shape-3 {
    --delay: 4s;
    --duration: 12s;
    top: 60%;
    left: 5%;
}

.floating-shape-4 {
    --delay: 6s;
    --duration: 20s;
    bottom: 30%;
    right: 10%;
}

.floating-shape-5 {
    --delay: 3s;
    --duration: 16s;
    top: 70%;
    left: 80%;
}

.floating-shape-6 {
    --delay: 1s;
    --duration: 14s;
    bottom: 10%;
    left: 60%;
}

.floating-shape-7 {
    --delay: 5s;
    --duration: 17s;
    top: 40%;
    left: 30%;
}

.floating-shape-8 {
    --delay: 7s;
    --duration: 13s;
    bottom: 60%;
    right: 40%;
}

/* Asegurar visibilidad de animaciones de fondo en responsive */
@media (max-width: 768px) {
    .features-floating-shapes {
        opacity: 0.8; /* Mantener visibilidad en móviles */
    }
    
    .floating-shape {
        opacity: 0.3; /* Reducir opacidad pero mantener visibilidad */
    }
    
    .floating-shape.triangle {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 20px solid rgba(37, 99, 235, 0.5);
    }
    
    .floating-shape.circle {
        width: 25px;
        height: 25px;
        background: rgba(6, 182, 212, 0.5);
    }
    
    .floating-shape.square {
        width: 20px;
        height: 20px;
        background: rgba(139, 69, 19, 0.4);
    }
    
    .about-code-matrix {
        opacity: 0.8; /* Mantener visibilidad en móviles */
    }
    
    .matrix-line {
        font-size: 14px; /* Texto más pequeño en móviles */
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .floating-shape.triangle {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 16px solid rgba(37, 99, 235, 0.4);
    }
    
    .floating-shape.circle {
        width: 20px;
        height: 20px;
        background: rgba(6, 182, 212, 0.4);
    }
    
    .floating-shape.square {
        width: 16px;
        height: 16px;
        background: rgba(139, 69, 19, 0.3);
    }
    
    .matrix-line {
        font-size: 12px; /* Texto aún más pequeño */
        opacity: 0.5;
    }
}

/* Ajustar z-index para hacer visibles las animaciones */
.features-section {
    position: relative; /* Asegurar contexto de posicionamiento */
}

.about-section-enhanced {
    position: relative; /* Asegurar contexto de posicionamiento */
}

.features-floating-shapes,
.about-code-matrix {
    z-index: 1; /* Hacer visibles las animaciones */
    pointer-events: none;
}

.contact-network-bg {
    z-index: 1; /* Hacer visible la animación de contacto también */
    pointer-events: none;
}

.features-section .container,
.about-section-enhanced .container,
#contact .container {
    position: relative;
    z-index: 2; /* Contenido por encima de animaciones */
}

/* Remove any default margins and ensure footer sticks to bottom */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure footer sticks to bottom with no whitespace */
body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding-bottom: 0;
}

/* Enhanced Footer Bottom with no whitespace */
.footer-bottom {
    background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 100%);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tech-badge {
    background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 100%);
    padding: 1rem 0;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ensure no extra space after footer */
.modern-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove any default Bootstrap margins */
.container-fluid, .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* ====================================
   SOCIAL LINKS ENHANCEMENTS
   ==================================== */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    transition: left 0.3s ease;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Contact Items in Footer */
.contact-item-footer {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-item-footer:hover {
    transform: translateX(5px);
}

.contact-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-item-footer a:hover {
    color: #06b6d4;
}

/* Contact Section Styles */
#contact {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#contact .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#contact .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    perspective: 1000px;
    height: 350px;
    margin-bottom: 2rem;
}

.contact-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.contact-card:hover .contact-card-inner {
    transform: rotateY(180deg);
}

.contact-card-front,
.contact-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-front {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-back {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(6, 182, 212, 0.9) 100%);
    transform: rotateY(180deg);
    color: white;
}

.whatsapp-card .contact-card-back {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.9) 0%, 
        rgba(18, 140, 126, 0.9) 100%);
}

/* Contact Icons */
.contact-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.contact-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Email Animation Particles */
.email-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.email-particle {
    position: absolute;
    opacity: 0;
    animation: emailFloat 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.email-particle:nth-child(1) {
    top: -20px;
    left: 10px;
}

.email-particle:nth-child(2) {
    top: 10px;
    right: -10px;
}

.email-particle:nth-child(3) {
    bottom: -15px;
    left: -15px;
}

.email-particle:nth-child(4) {
    bottom: 5px;
    right: 15px;
}

@keyframes emailFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-15px) scale(1);
    }
}

/* WhatsApp Chat Bubbles */
.whatsapp-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chat-bubble {
    position: absolute;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubbleFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

.chat-bubble:nth-child(1) {
    top: -25px;
    left: 15px;
}

.chat-bubble:nth-child(2) {
    top: 15px;
    right: -20px;
}

.chat-bubble:nth-child(3) {
    bottom: -20px;
    left: -25px;
}

.chat-bubble:nth-child(4) {
    bottom: 10px;
    right: 20px;
}

.chat-bubble svg {
    width: 16px;
    height: 16px;
    color: white;
}

@keyframes bubbleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
}

/* Contact Card Content */
.contact-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-cta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Card Back Content */
.contact-details h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-email,
.contact-phone {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-emoji {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-emoji svg {
    width: 18px;
    height: 18px;
}

/* Contact Action Buttons */
.btn-contact-action {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.btn-contact-action:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Additional Contact Info */
.additional-contact-info {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    color: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1rem;
    color: #06b6d4;
    font-size: 3rem;
    display: flex;
    justify-content: center;
}

.info-icon svg {
    width: 48px;
    height: 48px;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon svg {
    color: #2563eb;
    transform: scale(1.1);
}

.info-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Code Background */
.contact-code-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    opacity: 0.3;
    overflow: hidden;
}

.code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #06b6d4;
    animation: codeScroll var(--duration) linear infinite;
    animation-delay: var(--delay);
    white-space: nowrap;
}

.code-line:nth-child(1) {
    top: 20px;
    left: -100%;
}

.code-line:nth-child(2) {
    top: 60px;
    left: -100%;
}

.code-line:nth-child(3) {
    top: 100px;
    left: -100%;
}

.code-line:nth-child(4) {
    top: 140px;
    left: -100%;
}

@keyframes codeScroll {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.code-comment {
    color: #9ca3af;
}

.code-keyword {
    color: #f59e0b;
}

.code-variable {
    color: #06b6d4;
}

.code-string {
    color: #10b981;
}

.code-function {
    color: #8b5cf6;
}

.code-method {
    color: #f97316;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-card {
        height: 320px;
        margin-bottom: 2rem;
    }
    
    .contact-card-front,
    .contact-card-back {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .additional-contact-info {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .info-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 60px 0;
    }
    
    #contact .section-title {
        font-size: 2.5rem;
    }
    
    .contact-card {
        height: 300px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
}

/* ====================================
   LANGUAGE SWITCHER STYLES
   ==================================== */

.language-switcher {
    position: relative;
    z-index: 1000;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(6, 182, 212, 0.5);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.language-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease;
}

.language-toggle:hover .language-flag {
    transform: scale(1.1);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
       color: white;
    transform: translateX(4px);
}

.language-option.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    color: white;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.language-option .language-flag {
    flex-shrink: 0;
}

.language-name {
    font-weight: 500;
}

.language-native {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        order: -1;
        margin-right: auto;
    }
    
    .language-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .language-flag {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .language-dropdown {
        right: auto;
        left: 0;
        min-width: 140px;
    }
}

/* Animation for language transition */
.language-transition {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-transition.show {
    opacity: 1;
    transform: translateY(0);
}

/* Language loading state */
.language-loading {
    position: relative;
    overflow: hidden;
}

.language-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========================================
   SECTION BACKGROUND ANIMATIONS
   ======================================== */

/* Features Section Floating Shapes */
.features-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.4;
          animation: floatShape var(--duration) linear infinite;
    animation-delay: var(--delay);
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(37, 99, 235, 0.6);
}

.floating-shape.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.6);
}

.floating-shape.square {
    width: 25px;
    height: 25px;
    background: rgba(139, 69, 19, 0.5);
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-30px) translateX(10px) rotate(90deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) translateX(-10px) rotate(180deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-35px) translateX(15px) rotate(270deg); 
        opacity: 0.5;
    }
}

/* About Section Code Matrix */
.about-code-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.matrix-line {
    position: absolute;
    left: -100%;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: rgba(6, 182, 212, 0.7);
    animation: scrollMatrix var(--duration) linear infinite;
    animation-delay: var(--delay);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    font-weight: 500;
}

@keyframes scrollMatrix {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Contact Section Network Background */
.contact-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 50%;
    animation: pulse var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.network-line {
    position: absolute;
    height: 2px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 2px;
    animation: lineGrow var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Code-like selection styling */
::selection {
    background: rgba(0, 255, 65, 0.2);
    color: #ffffff;
    text-shadow: 0 0 4px rgba(0, 255, 65, 0.5);
}

::-moz-selection {
    background: rgba(0, 255, 65, 0.2);
    color: #ffffff;
    text-shadow: 0 0 4px rgba(0, 255, 65, 0.5);
}

/* Subtle animation for elements entering viewport */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced focus states with geek styling */
input:focus, textarea:focus, button:focus, a:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

/* Geek-style placeholder text */
input::placeholder, textarea::placeholder {
    color: rgba(6, 182, 212, 0.6);
    font-family: 'Courier New', monospace;
}

/* Performance optimization for cursors */
.cursor-optimized {
    will-change: cursor;
    transform: translateZ(0);
}

/* Apply optimized cursor class to common elements */
a, button, .clickable, .nav-link, .btn,
code, pre, .console-input, .retro-console-container,
input[type="text"], textarea {
    will-change: cursor;
}

/* Mejoras adicionales para tipografía y espaciado en la hero section */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 80px; /* Mejor separación en la parte inferior */
    }
    
    .hero-content {
        margin-bottom: 2rem; /* Espacio entre contenido y SVG */
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-title {
        line-height: 1.1; /* Mejor espaciado de líneas en móviles */
        margin-bottom: 0.8rem; /* Spacing reducido */
    }
    
    .hero-subtitle {
        line-height: 1.4;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-bottom: 40px;
    }
    
    .hero-title {
        line-height: 1.05;
        margin-bottom: 0.7rem; /* Spacing reducido para pantallas muy pequeñas */
    }
    
    .hero-subtitle {
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
}

/* Mejoras para evitar desbordamiento horizontal */
@media (max-width: 320px) {
    .hero-content {
        padding: 1rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .welcome-text {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .codalea-logo {
        width: 120px;
        margin-bottom: 0.5rem; /* Spacing mínimo para pantallas extra pequeñas */
    }
    
    .code-editor-container svg {
        width: 250px;
    }
    
    .floating-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== EQUIRENT CLIENT SHOWCASE SECTION ===== */
.client-showcase-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.client-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Elements Animation */
.client-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-gear, .floating-car, .floating-code {
    position: absolute;
    opacity: 0.6;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.floating-gear-1 {
    top: 15%;
    left: 10%;
    animation: floatRotate 8s infinite;
}

.floating-gear-2 {
    bottom: 20%;
    right: 15%;
    animation: floatRotate 12s infinite reverse;
}

.floating-car-1 {
    top: 60%;
    left: 5%;
    animation: floatHorizontal 10s infinite;
}

.floating-code-1 {
    top: 30%;
    right: 8%;
    animation: floatVertical 6s infinite;
}

@keyframes floatRotate {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
    100% { transform: translateY(-40px) rotate(360deg); opacity: 0.4; }
}

@keyframes floatHorizontal {
    0% { transform: translateX(0px) translateY(0px); opacity: 0.5; }
    50% { transform: translateX(30px) translateY(-15px); opacity: 0.8; }
    100% { transform: translateX(60px) translateY(0px); opacity: 0.5; }
}

@keyframes floatVertical {
    0% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.9; }
    100% { transform: translateY(-50px) scale(1); opacity: 0.6; }
}

/* Client Badge */
.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    color: #60A5FA;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4); }
}

.client-badge svg {
    color: #10B981;
}

/* Section Title */
.client-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.client-section-title .gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.subtitle-accent {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #94A3B8;
    margin-top: 0.5rem;
}

.client-section-description {
    font-size: 1.1rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Project Cards */
.equirent-project-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.equirent-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equirent-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.equirent-project-card:hover::before {
    opacity: 1;
}

.project-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.project-icon.modernization {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.project-icon.integration {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.project-icon.custom {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.equirent-project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-icon svg {
    color: white;
    stroke: currentColor;
}

.project-content {
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.project-description {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93C5FD;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.equirent-project-card:hover .tech-tag {
    background: rgba(59, 130, 246, 0.3);
    color: #DBEAFE;
    transform: translateY(-2px);
}

/* Partnership Highlight */
.partnership-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.partnership-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    animation: shimmerEffect 8s infinite;
    pointer-events: none;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.partnership-logo {
    flex-shrink: 0;
}

.equirent-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    animation: logoRotate 20s linear infinite;
    position: relative;
}

.equirent-logo-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.partnership-text {
    flex: 1;
}

.partnership-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.partnership-description {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.partnership-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #94A3B8;
    margin-top: 0.5rem;
}

.visit-client-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.visit-client-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.visit-client-btn svg {
    transition: transform 0.3s ease;
}

.visit-client-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .client-section-title {
        font-size: 2.5rem;
    }
    
    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .partnership-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .client-showcase-section {
        padding: 60px 0;
    }
    
    .client-section-title {
        font-size: 2rem;
    }
    
    .subtitle-accent {
        font-size: 1.2rem;
    }
    
    .equirent-project-card {
        padding: 1.5rem;
    }
    
    .partnership-highlight {
        padding: 2rem;
    }
    
    .partnership-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Simplify floating animations on mobile */
    .floating-gear, .floating-car, .floating-code {
        opacity: 0.3;
        animation-duration: 15s;
    }
}

@media (max-width: 576px) {
    .client-section-title {
        font-size: 1.8rem;
    }
    
    .equirent-project-card {
        padding: 1.2rem;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
    }
    
    .project-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .partnership-highlight {
        padding: 1.5rem;
    }
    
    .equirent-logo-placeholder {
        width: 80px;
        height: 80px;
    }
}
 
 
/* ===== C# .NET CODE SYMBOLS STYLES ===== */
/* Code symbols for client floating elements */
.code-symbol-client {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: rgba(6, 182, 212, 0.5);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    filter: blur(0.3px);
}

/* Update floating elements opacity for subtlety */
.floating-gear, .floating-car, .floating-code {
    opacity: 0.3 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add color variations for different code symbols */
.floating-gear-1 .code-symbol-client {
    color: rgba(6, 182, 212, 0.5);
}

.floating-gear-2 .code-symbol-client {
    color: rgba(37, 99, 235, 0.5);
}

.floating-car-1 .code-symbol-client {
    color: rgba(147, 51, 234, 0.5);
}

.floating-code-1 .code-symbol-client {
    color: rgba(16, 185, 129, 0.5);
}
