.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 1.5px;
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-subtitle {
    font-size: 0.95rem;
    color: #a8a7c0;
    max-width: 650px;
    line-height: 1.7;
}

.contact-banner {
    position: relative;
    padding-top: 70px;
    /* margin-top: -85px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 390px;
    overflow: hidden;
    background: linear-gradient(135deg, #090510 0%, #13081f 40%, #1b0a2d 100%);
}

/* Purple Glow */
.contact-banner::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -120px;
    right: -100px;
    background: rgba(198, 74, 255, 0.35);
    border-radius: 50%;
    filter: blur(120px);
}

/* Pink Glow */
.contact-banner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -100px;
    background: rgba(255, 70, 170, 0.20);
    border-radius: 50%;
    filter: blur(100px);
}

.contact-banner .banner-content {
    position: relative;
    z-index: 2;
}

.contact-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-banner p {
    color: #c9c3d7;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* Small Stars */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
    animation: blink 3s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: .2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@media(max-width:768px) {

    .contact-banner {
        height: 320px;
        padding-top: 60px;
    }

    .contact-banner h1 {
        font-size: 40px;
        margin-top: 25px;
    }

    .contact-banner p {
        font-size: 16px;
        /* padding: 0; */
    }
}

.contact-section {
    background: #0b0615;
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    color: #b46cff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info p {
    color: #b9b6c8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: rgba(180, 108, 255, .15);
    color: #b46cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.info-item span {
    color: #b9b6c8;
    line-height: 1.6;
}

/* Form */

.contact-form {
    background: rgba(0, 0, 0, .25);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.contact-form h3 {
    color: #111;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: transparent;
    border-color: #b46cff;
    box-shadow: none;
    color: #fff ;
}

.contact-form .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: transparent;
    border-color: #b46cff;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    /* Placeholder text */
    opacity: 1;
}

.contact-form textarea.form-control {
    height: 160px;
    resize: none;
    background: transparent;
    border-color: #b46cff;
    color: #fff !important;
}

.contact-form .form-control:focus {
    border-color: #8f3cff;
    box-shadow: 0 0 0 .2rem rgba(143, 60, 255, .15);
}

.send-btn {
    background: #b46cff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: .3s;
}

.placeholder-option{
    color: #fff;
}


@media(max-width:991px) {

    .contact-info {
        margin-bottom: 30px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .contact-form {
        padding: 30px;
    }

}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}
/* Select Wrapper */
.select-wrapper {
    position: relative;
}

/* Remove default arrow */
.select-wrapper .form-select {
    height: 55px;
    padding: 0 50px 0 18px;
    border-radius: 12px;
    border: 1px solid #b46cff;
    background: transparent;
    color: rgba(255,255,255,.8);
    box-shadow: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Focus */
.select-wrapper .form-select:focus {
    border-color: #8f3cff;
    box-shadow: 0 0 0 .2rem rgba(143,60,255,.15);
}

/* Dropdown options */
.select-wrapper .form-select option {
    background: #161122;
    color: #fff;
}

/* Custom arrow */
.select-wrapper::after {
    content: "\F282";              /* Bootstrap Icons chevron-down */
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #b46cff;
    pointer-events: none;
    font-size: 16px;
}

.contact-info strong,
.contact-info b {
    color: var(--color-pink, #d77afb) !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(215, 122, 251, 0.25);
}