/* Hero Section */
.consultancy-hero {
    position: relative;
    background: linear-gradient(125deg, rgba(34, 197, 94, 0.04) 0%, rgba(249, 115, 22, 0.04) 40%, rgba(192, 38, 211, 0.04) 80%);
    overflow: hidden;
    padding: 4rem 0 3rem;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.blob-g1 {
    background: radial-gradient(circle, var(--green-start), var(--green-end));
    width: 320px;
    height: 320px;
    top: -80px;
    left: -80px;
}

.blob-g2 {
    background: radial-gradient(circle, var(--orange-start), var(--orange-end));
    width: 300px;
    height: 300px;
    bottom: -40px;
    right: -60px;
}

/* Engagement Model Cards */
.engagement-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.engagement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(126, 34, 206, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-start);
}

/* Process Steps */
.step-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-start), var(--purple-start));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
}

/* Form Styling */
.consultancy-form-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue-start);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Testimonial */
.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border-left: 4px solid var(--blue-start);
}

@media (max-width: 768px) {
    .consultancy-hero {
        text-align: center;
    }

    .consultancy-form-card {
        padding: 1.5rem;
    }
}