/*
==================================================
CONTACT — HERO COMPONENT
Company: Servindustriales del Valle SAS
==================================================
*/

:root {
    --sidv-navy-dark: #0D2137;
    --sidv-navy-medium: #0B1B2D;
    --sidv-cyan-primary: #025672;
    --sidv-cyan-light: #037399;
    --sidv-yellow-safety: #F09700;
    --sidv-yellow-hover: #D88700;
    --sidv-yellow-light: #FFC043;
    --sidv-text-light: #F8FAFC;
    --sidv-text-muted: rgba(255, 255, 255, 0.82);
    --sidv-border-glass: rgba(255, 255, 255, 0.12);
}

.sidv-contact-hero {
    position: relative;
    padding: 7.5rem 0 6.5rem;
    overflow: hidden;
    background: 
        radial-gradient(
            circle at 85% 15%,
            rgba(240, 151, 0, 0.14),
            transparent 42%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(2, 86, 114, 0.38),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            var(--sidv-navy-dark) 0%,
            var(--sidv-navy-medium) 50%,
            var(--sidv-cyan-primary) 100%
        );
    color: #FFFFFF;
}

/*
==================================================
AMBIENT GLOW & DECORATIVE ORBS
==================================================
*/

.sidv-contact-hero__ambient-glow {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(2, 86, 114, 0.35) 0%,
        rgba(240, 151, 0, 0.08) 50%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.sidv-contact-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.sidv-contact-hero::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -160px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(240, 151, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

/*
==================================================
GRID LAYOUT & CONTENT
==================================================
*/

.sidv-contact-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.sidv-contact-hero__content {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidv-contact-hero.is-visible .sidv-contact-hero__content {
    opacity: 1;
    transform: translateY(0);
}

/*
==================================================
EYEBROW BADGE
==================================================
*/

.sidv-contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(240, 151, 0, 0.35);
    border-radius: 999px;
    background: rgba(240, 151, 0, 0.12);
    backdrop-filter: blur(10px);
    color: var(--sidv-yellow-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.sidv-contact-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--sidv-yellow-safety);
    box-shadow: 0 0 10px var(--sidv-yellow-safety);
}

/*
==================================================
TITLE & DESCRIPTION
==================================================
*/

.sidv-contact-hero__title {
    max-width: 860px;
    margin: 1.5rem auto 1.25rem;
    color: #FFFFFF;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.sidv-contact-hero__title span {
    color: transparent;
    background: linear-gradient(135deg, #FFFFFF 30%, var(--sidv-yellow-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.sidv-contact-hero__description {
    max-width: 740px;
    margin: 0 auto;
    color: var(--sidv-text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
    font-weight: 400;
}

.sidv-contact-hero__description strong {
    color: #FFFFFF;
    font-weight: 700;
}

/*
==================================================
ACTION BUTTONS (DUAL CTA)
==================================================
*/

.sidv-contact-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

/* Primary Button */
.sidv-contact-hero__actions .sidv-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 220px;
    padding: 1.1rem 1.8rem;
    border: none;
    border-radius: 14px;
    background: var(--sidv-yellow-safety);
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.sidv-contact-hero__actions .sidv-btn-primary:hover {
    background: var(--sidv-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(240, 151, 0, 0.38);
}

.sidv-contact-hero__actions .sidv-btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.sidv-contact-hero__actions .sidv-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 200px;
    padding: 1.1rem 1.8rem;
    border: 1px solid var(--sidv-border-glass);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sidv-contact-hero__actions .sidv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(240, 151, 0, 0.4);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.sidv-contact-hero__actions .sidv-btn-secondary:active {
    transform: translateY(0);
}

.sidv-contact-hero__actions svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sidv-contact-hero__actions a:hover svg {
    transform: translateX(4px);
}

/*
==================================================
PROOF CARDS (GLASSMORPHISM)
==================================================
*/

.sidv-contact-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.sidv-contact-hero.is-visible .sidv-contact-hero__proof {
    opacity: 1;
    transform: translateY(0);
}

.sidv-contact-proof-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--sidv-border-glass);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sidv-contact-proof-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 151, 0, 0.35);
    transform: translateY(-4px);
}

.sidv-contact-proof-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(240, 151, 0, 0.15);
    border: 1px solid rgba(240, 151, 0, 0.25);
    color: var(--sidv-yellow-safety);
}

.sidv-contact-proof-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidv-contact-proof-card__text strong {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
}

.sidv-contact-proof-card__text span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.83rem;
    line-height: 1.45;
}

/*
==================================================
ACCESSIBILITY & FOCUS
==================================================
*/

.sidv-contact-hero a:focus-visible {
    outline: 3px solid var(--sidv-yellow-safety);
    outline-offset: 3px;
}

/*
==================================================
RESPONSIVE DESIGN
==================================================
*/

@media (max-width: 992px) {
    .sidv-contact-hero {
        padding: 6.5rem 0 5.5rem;
    }

    .sidv-contact-hero__proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .sidv-contact-hero {
        padding: 5rem 0 4.5rem;
    }

    .sidv-contact-hero__title {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .sidv-contact-hero__description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .sidv-contact-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .sidv-contact-hero__actions .sidv-btn-primary,
    .sidv-contact-hero__actions .sidv-btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .sidv-contact-hero__proof {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .sidv-contact-proof-card {
        padding: 1rem;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .sidv-contact-hero__content,
    .sidv-contact-hero__proof {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .sidv-contact-hero * {
        animation: none !important;
        transition: none !important;
    }
}