/* Virtual Assistance Page Styles */

/* Premium Virtual Assistance Redesign */

.va-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative Blobs */
.va-hero__blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}



.va-hero__container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.va-hero__content {
    max-width: 650px;
}

.va-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #0A0A0A;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.va-hero__title span {
    color: #B91C1C;
}

.va-hero__description {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: clamp(18px, 1.2vw, 21px);
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 40px;
    max-width: 50ch;
}

.va-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Reusing project button styles with VA naming */
.va-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.va-btn--primary {
    background: #6E1414; /* Project Maroon */
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(110, 20, 20, 0.2);
}

.va-btn--primary:hover {
    background: #5a1010;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(110, 20, 20, 0.3);
}

.va-btn--secondary {
    background: transparent;
    color: #6E1414;
    border: 2px solid #6E1414;
}

.va-btn--secondary:hover {
    background: rgba(110, 20, 20, 0.05);
    transform: translateY(-3px);
}

.va-hero__media {
    position: relative;
    width: 100%;
}

.va-hero__img-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    background: #f3f4f6; /* Placeholder color */
    aspect-ratio: 1.1;
}

.va-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.va-hero__img-wrapper:hover .va-hero__img {
    transform: scale(1.03);
}

/* Decorative background elements */
.va-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(110, 20, 20, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1150px) {
    .va-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .va-hero__content {
        margin: 0 auto;
    }
    .va-hero__actions {
        justify-content: center;
    }
    .va-hero__img-wrapper {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .va-hero {
        padding: 60px 0;
    }
    .va-hero__title {
        font-size: 38px;
    }
    .va-hero__img-wrapper {
        border-radius: 24px;
    }
}
