/* CTAStyles.css */
.cta-white-wrapper {
    background: #fff;
    padding: 100px 60px; 
}

.cta-aurora-section {
    position: relative;
    padding: clamp(60px, 10vw, 120px) 0;
    margin: 0;
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); 
}

/* --- Aurora Background Logic --- */
.aurora-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(20, 229, 209, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(7, 60, 59, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 80%, rgba(20, 229, 209, 0.3) 0%, transparent 65%),
        linear-gradient(135deg, #073C3B 0%, #000000 100%);
    background-blend-mode: screen;
    animation: aurora-drift 20s infinite alternate ease-in-out;
}

.aurora-bg-container::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px);
    animation: grid-shift 30s linear infinite;
    opacity: 0.5;
}

/* --- Layout Content --- */
.cta-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 40px;
}

.cta-text-part {
    text-align: right;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

/* --- Input Group --- */
.cta-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

.cta-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 25px;
    color: #fff;
    font-family: 'Cairo';
    outline: none;
}

.cta-input::placeholder { color: rgba(255, 255, 255, 0.5); }

.cta-submit-btn {
    background: var(--primary-cyan);
    color: var(--dark-teal);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-submit-btn:hover { transform: scale(1.05); }

/* --- Image Preview --- */
.cta-dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    max-height: 400px;
    overflow: hidden;
}

.cta-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    object-position: top;
    height: 100%;
}

/* --- Animations --- */
@keyframes aurora-drift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(20deg) brightness(1.1); }
}

@keyframes grid-shift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, -5%) rotate(2deg); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .cta-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-text-part {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cta-description { margin: 0 auto 30px auto; }
    .cta-dashboard-preview {
        transform: none;
        margin-top: 30px;
    }
    .cta-aurora-section { margin: 40px 10px; }
}