/**
 * CSG Contact Hero Widget Styles
 *
 * @package CsgPersonalized
 * @since   1.0.2
 */

/* Section container */
.csg-el-contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--csg-dark, #0f172a);
    overflow: hidden;
    text-align: center;
}

/* Gradient overlay */
.csg-el-contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.3), rgba(30, 136, 229, 0.3));
}

/* Bottom fade */
.csg-el-contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--csg-gray-50, #f8fafc), transparent);
}

/* Content area */
.csg-el-contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

/* Label */
.csg-el-contact-hero__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

/* Title */
.csg-el-contact-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

/* Description */
.csg-el-contact-hero__desc {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* Decorative shapes container */
.csg-el-contact-hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* Shape base */
.csg-el-contact-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.15);
}

.csg-el-contact-hero__shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.csg-el-contact-hero__shape--2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    background: rgba(30, 136, 229, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .csg-el-contact-hero {
        padding: 80px 0 60px;
    }

    .csg-el-contact-hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .csg-el-contact-hero__title {
        font-size: 1.75rem;
    }
}
