/* Intro Section - Modern Design */

.intro-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0a15 50%, #0a0a0f 100%);
    padding: 80px var(--spacing-lg) !important;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column */
.intro-left {
    animation: slideUp 0.8s ease-out;
}

.intro-section h2,
.intro-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.3;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-title {
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #a855f7, #ec4899) 1;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border-radius: 2px;
}

.intro-subtitle {
    color: #d1d5db;
    font-size: 1.1rem;
    margin: 0 0 var(--spacing-2xl) 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Features List */
.intro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-2xl) 0;
}

.intro-features li {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    position: relative;
}

.intro-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Contact Form */
.intro-contact-form {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.contact-input-group {
    display: flex;
    gap: var(--spacing-md);
    flex: 1;
    align-items: center;
}

.contact-country-flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-input:focus {
    outline: none;
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.contact-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

/* Disclaimer */
.intro-disclaimer {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* Right Column - Illustration */
.intro-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.intro-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.intro-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid {
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 60px var(--spacing-md) !important;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .intro-section h2 {
        font-size: 1.5rem;
    }

    .intro-contact-form {
        flex-direction: column;
    }

    .contact-input-group {
        flex-direction: column;
        width: 100%;
    }

    .contact-input {
        width: 100%;
    }

    .contact-button {
        width: 100%;
    }

    .intro-right {
        order: -1;
    }
}
