:root {
    --Gradient-Linear-84: linear-gradient(90deg, #7873F5 0%, #EC77AB 100%);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-section/bg-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-section/stripe.webp');
    background-size: cover;
    background-position: 20%;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 2;
}

.overlay-hero {
    z-index: 3;
}

.hero-content {
    justify-content: unset !important;
}

/* Typography */
.contact-title {
    color: #414651;
}

.contact-subtitle {
    color: #717680;
    max-width: 500px;
}

.contact-label {
    color: #414651;
}

.gradient-text-ai {
    background: linear-gradient(90deg, #7873F5 0%, #EC77AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form */
.contact-form-wrap {
    max-width: 860px;
}

.btn-primary {
    background-color: #004EEB;
    box-shadow: 0 4px 12px 0 #004EEB66;
    padding: 18px 32px;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0041d6;
    box-shadow: 0 6px 16px 0 #0041d666;
    color: #fff;
}

/* Social section */
.social-icons a i {
    font-size: 20px;
    color: #7D89B0;
}

.connect-social-section {
    position: absolute;
    bottom: 0;
    border-radius: 12px;
    padding: 16px;
    gap: 60px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(90deg, #7873F5 0%, #EC77AB 100%) border-box;
    border: 1px solid transparent;
}

input, select, textarea {
    border-radius: 4px !important;
    padding: 12px !important;
    font-family: sophia;
}

input::placeholder, select::placeholder, textarea::placeholder { 
  color: #A4A7AE !important;
}

.short-divider{
    height: 1px;
    width: 70px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(90deg, #7873F5 0%, #EC77AB 100%) border-box;
    border: 1px solid transparent;
}

@media (max-width: 1440px) {
    .hero-content {
        margin-top: 130px !important;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        margin-top: 80px !important;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 80px !important;
        padding: 0 2rem;
    }

    .connect-social-section{
        position: inherit;
    }

    h1{
        font-size: 28px !important;
    }

    .title1-sophia{
        font-size: 16px !important;
    }

    .child-section{
        gap: 1rem !important;
    }
}

@media (max-width: 500px) {
    .contact-hero-section{
        gap: 1rem !important;
        margin-bottom: 3rem;
    }

    .contact-form-wrap {
        margin-bottom: 3rem;
    }
}