/**===================================================
* Website Name: Group26Consult - Contact Page Styles
* Created: March 25, 2025
* Last Updated: March 25, 2025
* Author: Goodness Adewuyi
===================================================*/

/**=========================
 * CONTACT HERO STYLES
 =========================*/
.contact-hero {
    overflow: hidden;
    position: relative;
    color: var(--white);
    padding: 130px 0 100px;
    background: var(--dark-bg);
}

.contact-hero .section__badge{
    color: var(--success);
}

.contact-hero__container {
    z-index: 2;
    position: relative;
}

.contact-hero__content {
    z-index: 2;
    position: relative;
}

.contact-hero__text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero__text-wrapper h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background-clip: text;
    text-shadow: var(--text-shadow);
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(90deg, #FFFFFF, #E0E9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero__text-wrapper p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/**=====================
 * BREAKPOINT STYLES
 =====================*/
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
}

/**=============================
 * CONTACT SECTION STYLES
 =============================*/
.contact-section {
    padding: 6rem 0;
    position: relative;
    background: var(--background);
}

.contact__content {
    gap: 4rem;
    display: grid;
    margin-top: 3rem;
    grid-template-columns: 1fr 1.2fr;
}

/**======================
 * CONTACT INFO STYLES
 ======================*/
.contact__info {
    position: relative;
}

.info__intro {
    margin-bottom: 2.5rem;
}

.info__intro h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: clamp(1.5rem, 2vw, 1.75rem);
}

.info__intro p {
    line-height: 1.7;
    color: var(--gray-600);
    font-size: clamp(0.95rem, 1.25vw, 1.1rem);
}

.info__details {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.info__item {
    gap: 1.5rem;
    display: flex;
    padding: 1.5rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 80, 224, 0.1);
}

.item__icon {
    width: 50px;
    height: 50px;
    display: flex;
    flex-shrink: 0;
    font-size: 1.25rem;
    border-radius: 12px;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background: var(--gradient);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 80, 224, 0.15);
}

.info__item:hover .item__icon {
    transform: rotate(-10deg);
}

.item__content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
}

.item__content p {
    line-height: 1.5;
    color: var(--gray-600);
    font-size: clamp(0.9rem, 1.25vw, 1rem);
}

/**=============================
 * CONTACT FORM STYLES
 =============================*/
.contact__form {
    padding: 2.5rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
}

.form__header {
    text-align: center;
    margin-bottom: 2rem;
}

.header__icon {
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 auto;
    font-size: 1.5rem;
    position: relative;
    border-radius: 16px;
    margin-bottom: 1rem;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background: var(--gradient);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 80, 224, 0.15);
}

.icon__glow {
    opacity: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    position: absolute;
    filter: blur(15px);
    background: var(--gradient);
    transition: var(--transition);
}

.header__icon:hover {
    transform: rotate(-10deg);
}

.header__icon:hover .icon__glow {
    opacity: 0.5;
}

.form__header h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

.form__header p {
    color: var(--gray-600);
    font-size: clamp(0.9rem, 1.25vw, 1rem);
}

.form__container {
    position: relative;
}

/**=====================
 * BREAKPOINT STYLES
 =====================*/
@media (max-width: 991px) {
    .contact__content {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .contact__form {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact__form {
        padding: 2rem;
    }

    .info__item {
        padding: 1.25rem;
    }
}