.ask {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--primary-cream) 100%);
    position: relative;
    overflow: hidden;
}

.ask-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ask-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: glowFloat 12s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-cream) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

.ask-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ask-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.ask-content {
    flex: 1;
}

.content-header {
    margin-bottom: 3rem;
}

.ask-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 420px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature:hover .feature-icon i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ask-description {
    margin-bottom: 2.5rem;
}

.ask-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.ask-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition);
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 50px;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    gap: 1.5rem;
}

.chat-button:hover .button-glow {
    left: 100%;
}

.support-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.ask-visual {
    flex: 1;
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.visual-container:hover .main-image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.visual-container:hover .image-glow {
    opacity: 0.3;
}

.chat-bubble {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    z-index: 3;
    animation: bubbleFloat 4s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bubble-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.bubble-tail {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--white);
    transform: rotate(45deg);
}

.bubble-1 {
    top: 5%;
    right: 15px;
    animation-delay: 0s;
}

.bubble-1 .bubble-tail {
    top: 50%;
    right: -7px;
    transform: translateY(-50%) rotate(45deg);
}

.bubble-2 {
    bottom: 20%;
    left: 20px;
    animation-delay: 2s;
}

.bubble-2 .bubble-tail {
    top: 50%;
    left: -7px;
    transform: translateY(-50%) rotate(45deg);
}

.online-indicator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: indicatorPulse 3s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
}

.indicator-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.4;
    animation: dotPulse 2s ease-in-out infinite;
}

.online-indicator span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.ask-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ask-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.shape-fill {
    fill: var(--white);
    opacity: 0.3;
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media screen and (max-width: 1200px) {
    .ask-container {
        flex-direction: column;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .ask {
        padding: 4rem 1.5rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        align-self: center;
    }

    .support-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .chat-bubble {
        display: none;
    }

    .online-indicator {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
}