/* About Page - Contact CTA Section */

/* Contact Teaser Section */
.contact-teaser {
    position: relative;
    padding: 8rem 0;
    background-color: var(--color-background);
    overflow: hidden;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.contact-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.contact-content a {
    margin-bottom: 2rem;
}

/* Gradient Button Styling */
.gradient-btn {
    background: linear-gradient(135deg, #00FFB2 0%, #7B61FF 100%);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 255, 178, 0.3);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 255, 178, 0.15) 0%, rgba(123, 97, 255, 0.05) 70%);
    filter: blur(5px);
    z-index: 1;
    border: 1px solid rgba(0, 255, 178, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 178, 0.1);
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.element-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 15%;
    animation: float 18s infinite ease-in-out reverse;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 20%;
    animation: float 12s infinite ease-in-out 2s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(5deg); }
    50% { transform: translate(0, 15px) rotate(0deg); }
    75% { transform: translate(-15px, -15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2.8rem;
    }
    
    .element-1 {
        width: 200px;
        height: 200px;
    }
    
    .element-2 {
        width: 180px;
        height: 180px;
    }
    
    .section-container {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Content Side */
.teaser-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.teaser-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.teaser-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Visual Side */
.teaser-visual {
    position: relative;
    width: 50%;
    height: 400px;
    overflow: hidden;
    flex: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-element {
    position: absolute;
    border-radius: 4px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    animation: float 6s infinite ease-in-out;
}

.float-element.e1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-element.e2 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.float-element.e3 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 30%;
    animation-delay: 2s;
}

/* Button Styling */
.teaser-content .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teaser-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(100, 255, 218, 0.2);
}

.teaser-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.teaser-content .btn-primary:hover::before {
    transform: translateX(100%);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 