/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #ffffff;
    --color-blue-bright: #3B82F6;
    --color-blue-light: #60A5FA;
    --color-blue-lighter: #93C5FD;
    --color-blue-dark: #2563EB;
    --color-blue-darker: #1E40AF;
    --color-text: #000000;
    --color-text-light: #333333;
    --color-background: #ffffff;
    --color-background-alt: #f8fafb;
    --color-accent: #3B82F6;
    --color-border: #e0e8ef;
    --font-main: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 110px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.3));
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright), var(--color-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-bright);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-blue-bright);
}

.nav-links .cta-button {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: var(--transition);
}

.nav-links .cta-button::after {
    display: none;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.5);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-blue-bright);
    transition: var(--transition);
    border-radius: 2px;
}

/* Video Intro */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.video-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

.video-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile video fix */
@media (max-width: 768px) {
    .video-intro {
        background: #ffffff;
    }
    
    .video-intro video {
        width: 95%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 15px;
        box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1.2s ease;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    min-height: 120px;
}

/* Animación palabra por palabra - Optimizada */
.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: revealWord 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

@keyframes revealWord {
    0% {
        opacity: 0;
        transform: translateY(15px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 7s;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-dark));
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6),
                0 0 25px rgba(59, 130, 246, 0.4),
                0 4px 10px rgba(59, 130, 246, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.6),
                    0 0 25px rgba(59, 130, 246, 0.4),
                    0 4px 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8),
                    0 0 35px rgba(59, 130, 246, 0.6),
                    0 4px 15px rgba(59, 130, 246, 0.5);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.hero-img-wrapper {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 245, 255, 0.9));
    border-radius: 0;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25), 
                0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    transition: all 0.5s ease;
    opacity: 0;
    position: relative;
    transform: translateX(0);
    display: block;
    clip-path: polygon(
        0% 0%, 5% 0%, 5% 8%, 0% 8%,
        0% 12%, 8% 12%, 8% 0%, 15% 0%, 15% 10%, 12% 10%, 12% 15%, 0% 15%,
        0% 20%, 10% 20%, 10% 25%, 5% 25%, 5% 30%, 0% 30%,
        0% 35%, 7% 35%, 7% 40%, 0% 40%,
        0% 45%, 12% 45%, 12% 50%, 8% 50%, 8% 55%, 0% 55%,
        0% 60%, 6% 60%, 6% 65%, 10% 65%, 10% 70%, 0% 70%,
        0% 75%, 9% 75%, 9% 80%, 5% 80%, 5% 85%, 0% 85%,
        0% 90%, 8% 90%, 8% 95%, 0% 95%,
        0% 100%, 10% 100%, 10% 92%, 15% 92%, 15% 100%, 20% 100%, 20% 95%, 25% 95%, 25% 100%, 30% 100%, 30% 90%, 35% 90%, 35% 100%, 40% 100%, 40% 93%, 45% 93%, 45% 100%, 50% 100%, 50% 95%, 55% 95%, 55% 100%, 60% 100%, 60% 92%, 65% 92%, 65% 100%, 70% 100%, 70% 94%, 75% 94%, 75% 100%, 80% 100%, 80% 91%, 85% 91%, 85% 100%, 90% 100%, 90% 96%, 95% 96%, 95% 100%, 100% 100%,
        100% 95%, 92% 95%, 92% 90%, 100% 90%,
        100% 85%, 95% 85%, 95% 80%, 90% 80%, 90% 75%, 100% 75%,
        100% 70%, 93% 70%, 93% 65%, 100% 65%,
        100% 60%, 88% 60%, 88% 55%, 92% 55%, 92% 50%, 100% 50%,
        100% 45%, 94% 45%, 94% 40%, 100% 40%,
        100% 35%, 91% 35%, 91% 30%, 95% 30%, 95% 25%, 100% 25%,
        100% 20%, 90% 20%, 90% 15%, 100% 15%,
        100% 10%, 85% 10%, 85% 5%, 92% 5%, 92% 0%, 100% 0%
    );
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.hero-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                0 0 30px rgba(59, 130, 246, 0.5),
                0 0 50px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 2;
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-img-label.show-label {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                    0 0 30px rgba(59, 130, 246, 0.5),
                    0 0 50px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6),
                    0 0 40px rgba(59, 130, 246, 0.7),
                    0 0 60px rgba(59, 130, 246, 0.5);
    }
}

/* Clases para activar animaciones */
.hero-img.animate-from-right {
    animation: slideInRight 2.5s ease forwards;
}

.hero-img.animate-from-left {
    animation: slideInLeft 2.5s ease forwards;
}

.hero-img-wrapper:hover .hero-img {
    transform: translateY(-10px) scale(1.02) rotate(1deg);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.45);
}

.hero-img-wrapper:hover .hero-img-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-img.animate-from-right ~ .hero-img-label,
.hero-img.animate-from-left ~ .hero-img-label {
    animation: fadeInUp 0.8s ease forwards 1.5s;
}

.hero-img:active {
    transform: scale(0.98);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de brillo al hover */
.hero-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    border-radius: 20px;
}

.hero-img:hover::before {
    left: 100%;
}

/* Animaciones */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(150px) rotate(8deg) scale(0.7);
    }
    70% {
        transform: translateX(-15px) rotate(-3deg) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px) rotate(-8deg) scale(0.7);
    }
    70% {
        transform: translateX(15px) rotate(3deg) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efecto de pulso sutil para las imágenes */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
    }
    50% {
        box-shadow: 0 15px 50px rgba(59, 130, 246, 0.35);
    }
}

.hero-img {
    animation-fill-mode: forwards;
}

/* Animación continua sutil después de cargar */
.hero-img.loaded {
    animation: subtlePulse 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 3px 10px rgba(59, 130, 246, 0.18);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button .emoji {
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    border-bottom: 8px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

/* Cubos pixelados negros en las esquinas - explosión desde abajo */
.section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: 
        repeating-linear-gradient(to right, #000 0px, #000 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(to bottom, #000 0px, #000 1px, transparent 1px, transparent 20px);
    background-size: 20px 20px;
    background-position: 0 100%;
    mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    mask-composite: add;
    -webkit-mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    -webkit-mask-composite: source-over;
    pointer-events: none;
    opacity: 0.4;
}

.section-alt {
    background-color: var(--color-background-alt);
    border-bottom: 8px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

/* Cubos pixelados negros en las esquinas para section-alt */
.section-alt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: 
        repeating-linear-gradient(to right, #000 0px, #000 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(to bottom, #000 0px, #000 1px, transparent 1px, transparent 20px);
    background-size: 20px 20px;
    background-position: 0 100%;
    mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    mask-composite: add;
    -webkit-mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    -webkit-mask-composite: source-over;
    pointer-events: none;
    opacity: 0.4;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--color-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 500;
    text-shadow: 0 3px 10px rgba(59, 130, 246, 0.18);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-intro.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.section-conclusion {
    font-size: 1.15rem;
    color: var(--color-text);
    text-align: center;
    margin-top: 2.5rem;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.section-text-content {
    max-width: 900px;
    margin: 2rem auto;
    text-align: left;
    padding: 2.5rem;
    background: white;
    border-radius: 0;
    border: 2px solid var(--color-blue-bright);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.section-text-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-text-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(59, 130, 246, 0.08);
}

.section-text-content p:last-child {
    margin-bottom: 0;
}

/* Variaciones de estilo para diferentes secciones */
#que-hacemos .section-text-content {
    max-width: 850px;
    margin-left: 5%;
    border-radius: 0;
    transform: translateX(-40px);
}

#servicio .section-text-content {
    max-width: 950px;
    margin-right: 5%;
    border-radius: 0;
    transform: translateX(40px);
    border-color: var(--color-blue-light);
}

#servicio .section-text-content.animate {
    transform: translateX(0);
}

#clientes .section-text-content {
    max-width: 800px;
    text-align: center;
    border-radius: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

#clientes .section-text-content.animate {
    transform: scale(1);
}

#por-que .section-text-content {
    max-width: 920px;
    margin-left: auto;
    margin-right: 3%;
    border-radius: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

#por-que .section-text-content.animate {
    transform: translateY(0);
}


#proceso .section-text-content {
    max-width: 900px;
    border-radius: 0;
    transform: translateY(-30px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
    border-color: var(--color-blue-lighter);
}

#proceso .section-text-content.animate {
    transform: translateY(0);
}

.feature-card {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright), var(--color-blue-light));
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.35);
    opacity: 0;
    transform: translateX(-50px);
}

.feature-card.animate {
    animation: slideInFromLeft 1s ease forwards;
}

.feature-card:nth-child(2).animate {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3).animate {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.5);
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 400;
}

/* Service Content */
.service-content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.service-content p {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.15rem !important;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.12));
    border-radius: 15px;
    border: 2px solid var(--color-blue-light);
    position: relative;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

.highlight.animate {
    opacity: 1;
    transform: translateX(0);
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    opacity: 0.05;
    border-radius: 15px;
    z-index: -1;
}

/* Variaciones de highlights */
#servicio .highlight {
    border-radius: 25px 10px 25px 10px;
    transform: translateX(-30px);
}

#clientes .highlight {
    text-align: center;
    border-radius: 30px;
    transform: scale(0.95);
    transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

#clientes .highlight.animate {
    transform: scale(1);
}

#por-que .highlight {
    border-radius: 15px 35px 15px 35px;
    transform: translateY(20px);
    transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

#por-que .highlight.animate {
    transform: translateY(0);
}


/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.client-card {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright), var(--color-blue-light));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.35);
    opacity: 0;
    transform: translateY(50px);
}

.client-card.animate {
    animation: slideInFromBottom 1s ease forwards;
}

.client-card:nth-child(2).animate {
    animation-delay: 0.3s;
}

.client-card:nth-child(3).animate {
    animation-delay: 0.6s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.5);
}

@keyframes slideInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.client-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 400;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blue-bright);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-item p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.why-statement {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--color-border);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.why-statement.animate {
    opacity: 1;
    transform: scale(1);
}

.why-statement p {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.08);
}

.why-statement p:last-child {
    margin-bottom: 0;
}

/* Experience Content */
.experience-content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.experience-content p {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 3rem auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--color-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-50px);
}

.process-step.animate {
    animation: slideInFromLeft 1s ease forwards;
}

.process-step:nth-child(3).animate {
    animation-delay: 0.3s;
}

.process-step:nth-child(5).animate {
    animation-delay: 0.6s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
    border-color: var(--color-blue-bright);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--color-blue-bright);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-blue-darker), var(--color-blue-dark), var(--color-blue-bright));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.whatsapp-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-button-large .emoji {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-blue-darker);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    display: block;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link-main {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-link-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-link:hover {
    color: var(--color-blue-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Pasarela de Logos */
.logos-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    border-bottom: 8px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.logos-section::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

/* Cubos pixelados negros en las esquinas */
.logos-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-image: 
        repeating-linear-gradient(to right, #000 0px, #000 1px, transparent 1px, transparent 18px),
        repeating-linear-gradient(to bottom, #000 0px, #000 1px, transparent 1px, transparent 18px);
    background-size: 18px 18px;
    background-position: 0 100%;
    mask-image: 
        radial-gradient(ellipse 350px 150px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 350px 150px at 100% 100%, black 20%, transparent 60%);
    mask-composite: add;
    -webkit-mask-image: 
        radial-gradient(ellipse 350px 150px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 350px 150px at 100% 100%, black 20%, transparent 60%);
    -webkit-mask-composite: source-over;
    pointer-events: none;
    opacity: 0.35;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 80px;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
    border: 2px solid var(--color-blue-bright);
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.logo-item img,
.logo-item svg {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-item span {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

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


/* Qué Hacemos Content */
.que-hacemos-content {
    max-width: 900px;
    margin: 2rem auto;
}

.que-hacemos-text {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--color-blue-bright);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.que-hacemos-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.que-hacemos-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.que-hacemos-text p:last-child {
    margin-bottom: 0;
}

/* Enfoque Grid */
.enfoque-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.enfoque-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--color-blue-bright);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.enfoque-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

.enfoque-card:nth-child(2) {
    animation-delay: 0.2s;
}

.enfoque-card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.08));
    border-color: var(--color-blue-light);
    animation-delay: 0.4s;
}

.enfoque-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(59, 130, 246, 0.18);
}

.enfoque-card p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Por Qué Layout */
.porque-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.porque-main {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--color-blue-bright);
    box-shadow: 0 12px 45px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.porque-main.animate {
    opacity: 1;
    transform: translateX(0);
}

.porque-main h3 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(59, 130, 246, 0.18);
}

.porque-main p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.porque-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.porque-stat {
    background: white;
    padding: 1.8rem;
    border-radius: 0;
    border: 2px solid var(--color-blue-light);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.porque-stat.animate {
    opacity: 1;
    transform: translateX(0);
}

.porque-stat:nth-child(2) {
    transition-delay: 0.2s;
}

.porque-stat:nth-child(3) {
    transition-delay: 0.4s;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--color-blue-bright);
    font-weight: bold;
}

.porque-stat p {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

.porque-footer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    padding: 2rem;
    border-radius: 0;
    border: 2px solid var(--color-blue-lighter);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.porque-footer.animate {
    opacity: 1;
    transform: scale(1);
}

.porque-footer p {
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

/* Timeline Proceso */
.proceso-timeline {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.4s;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--color-blue-bright);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.25);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(59, 130, 246, 0.18);
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}


/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
        transition: var(--transition);
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        padding: 160px 20px 60px;
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
        padding-top: 2rem;
    }

    .hero-images {
        order: 2;
    }

    .hero-text h1,
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .clients-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    /* Reset variaciones en mobile */
    #que-hacemos .section-text-content,
    #servicio .section-text-content,
    #clientes .section-text-content,
    #por-que .section-text-content,
    #proceso .section-text-content {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
        transform: translateY(20px);
    }

    #que-hacemos .section-text-content.animate,
    #servicio .section-text-content.animate,
    #clientes .section-text-content.animate,
    #por-que .section-text-content.animate,
    #proceso .section-text-content.animate {
        transform: translateY(0);
    }

    /* Nuevas estructuras responsive */
    .enfoque-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .enfoque-card-highlight {
        grid-column: 1;
    }

    .porque-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .porque-main,
    .porque-stat {
        transform: translateY(20px);
    }

    .porque-main.animate,
    .porque-stat.animate {
        transform: translateY(0);
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        transform: translateY(20px);
    }

    .timeline-item.animate {
        transform: translateY(0);
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .footer-contact {
        align-items: center;
    }

    .logos-track {
        gap: 2rem;
    }

    .logo-item {
        min-width: 120px;
        padding: 0.8rem 1.5rem;
    }

    .logo-item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 15px 40px;
    }

    .hero-text {
        padding-top: 1rem;
    }

    .hero-text h1,
    .hero h1 {
        font-size: 1.6rem;
        margin-top: 1rem;
        min-height: 80px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-img-label {
        bottom: 12px;
        left: 12px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-dots {
        margin-top: 0.8rem;
        gap: 10px;
    }
    
    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    
                drop-shadow(0 5px 12px rgba(59, 130, 246, 0.25))
                drop-shadow(0 -5px 12px rgba(59, 130, 246, 0.2));
    }

    .whatsapp-button,
    .whatsapp-button-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.7rem;
    }

    .hero-layout {
        gap: 1.5rem;
    }

    .hero-images {
        gap: 1rem;
    }

    .logo img {
        height: 70px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--color-metallic-blue-light);
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Google Form Section */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    border-bottom: 8px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    z-index: 2;
}

/* Cubos pixelados negros en las esquinas */
/* Web Types Showcase Section */
.form-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: 
        repeating-linear-gradient(to right, #000 0px, #000 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(to bottom, #000 0px, #000 1px, transparent 1px, transparent 20px);
    background-size: 20px 20px;
    background-position: 0 100%;
    mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    mask-composite: add;
    -webkit-mask-image: 
        radial-gradient(ellipse 400px 200px at 0% 100%, black 20%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 100% 100%, black 20%, transparent 60%);
    -webkit-mask-composite: source-over;
    pointer-events: none;
    opacity: 0.35;
    z-index: 1;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.35);
    border: 2px solid var(--color-blue-bright);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.contact-form-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-container h2 {
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.form-description {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(59, 130, 246, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(59, 130, 246, 0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--color-text);
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue-bright);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-bright));
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}


