/* Hyper Premium Contact Form Styles */

.premium-contact-section {
    position: relative;
    padding: 8rem 1rem;
    background: #0a0b28;
    overflow: hidden;
    color: #ffffff;
}

/* Animated glowing orbs — ondas de luz marca (teal / púrpura) */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #49C5B6, transparent 70%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #8E7CC3, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #4A5FD0, transparent 60%);
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, 3%) scale(1.05); }
    66% { transform: translate(-3%, 1%) scale(0.95); }
}

/* Form Layout */
.premium-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .premium-form-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }
}

/* Info side */
.premium-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4rem;
    text-align: center;
}

@media (min-width: 992px) {
    .premium-info-side {
        text-align: left;
        margin-bottom: 0;
    }
}

.premium-info-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    .premium-info-title {
        font-size: clamp(2.25rem, 3.5vw + 0.75rem, 3.5rem);
    }
}

.premium-info-title span {
    background: linear-gradient(90deg, #49C5B6 0%, #8E7CC3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-info-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .premium-info-subtitle {
        margin: 0;
    }
}

/* Glassmorphic Form Container */
.premium-form-container {
    flex: 1.2;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
}

/* Input Fields */
.premium-input-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.premium-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    outline: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.premium-label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-input:focus ~ .premium-label,
.premium-input:not(:placeholder-shown) ~ .premium-label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: #49C5B6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Focus Animated Border line */
.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #49C5B6, #8E7CC3);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-input:focus ~ .input-highlight {
    width: 100%;
}

textarea.premium-input {
    min-height: 80px;
    resize: none;
}

/* Submit Button — gradiente de marca */
.premium-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(90deg, #49C5B6 0%, #8E7CC3 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(73, 197, 182, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

/* Button Shine Effect */
.premium-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.premium-submit-btn:hover::before {
    left: 200%;
}

.premium-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(142, 124, 195, 0.35);
}

.premium-submit-btn:active {
    transform: translateY(1px) scale(0.98);
}

.premium-iframe-container {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    display: none;
}

@media (max-width: 640px) {
    .premium-form-container {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
}
