/*==================================================
    UZAYO CONTACT.CSS
    PART 1 — HERO + CONTACT MAIN
==================================================*/


/*======================================
    CONTACT HERO
======================================*/

.contact-hero{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:110px 30px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #f8f7f4,
            #ffffff
        );

}


.contact-hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    top:-300px;

    right:-180px;

    background:rgba(184,155,94,.09);

    filter:blur(70px);

}


.contact-hero::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    bottom:-250px;

    left:-150px;

    background:rgba(0,0,0,.025);

    filter:blur(60px);

}


.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:850px;

    text-align:center;

}


.contact-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-bottom:25px;

    color:var(--color-gold);

    font-size:.78rem;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}


.contact-eyebrow::before,

.contact-eyebrow::after{

    content:"";

    width:45px;

    height:1px;

    background:var(--color-gold);

}


.contact-hero h1{

    margin:0;

    font-family:var(--font-heading);

    font-size:clamp(4rem,8vw,7rem);

    line-height:.9;

    letter-spacing:-4px;

    color:var(--color-black);

}


.contact-hero-content p{

    max-width:620px;

    margin:35px auto 0;

    color:var(--color-grey-600);

    font-size:1.05rem;

    line-height:1.9;

}


/*======================================
    CONTACT MAIN
======================================*/

.contact-main{

    padding:140px 0;

    background:var(--color-white);

}


.contact-container{

    width:min(92%,1400px);

    margin:0 auto;

}


.contact-main .contact-container{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:100px;

    align-items:start;

}


/*======================================
    CONTACT INFORMATION
======================================*/

.contact-info{

    max-width:600px;

}


.contact-section-label{

    display:inline-block;

    margin-bottom:20px;

    color:var(--color-gold);

    font-size:.75rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}


.contact-info h2{

    margin:0 0 30px;

    font-family:var(--font-heading);

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

    letter-spacing:-2px;

    color:var(--color-black);

}


.contact-info h2 span{

    color:var(--color-gold);

}


.contact-intro{

    max-width:520px;

    margin-bottom:55px;

    color:var(--color-grey-600);

    font-size:1rem;

    line-height:1.9;

}


/*======================================
    CONTACT DETAILS
======================================*/

.contact-details{

    display:flex;

    flex-direction:column;

    gap:35px;

}


.contact-detail{

    display:flex;

    align-items:flex-start;

    gap:25px;

    padding-bottom:30px;

    border-bottom:1px solid rgba(0,0,0,.09);

}


.contact-detail-number{

    flex-shrink:0;

    color:var(--color-gold);

    font-size:.7rem;

    font-weight:700;

    letter-spacing:2px;

}


.contact-detail h3{

    margin:0 0 8px;

    font-family:var(--font-heading);

    font-size:1.35rem;

    color:var(--color-black);

}


.contact-detail p{

    margin:0;

    color:var(--color-grey-600);

    line-height:1.7;

}


.contact-detail a{

    color:var(--color-grey-600);

    text-decoration:none;

    transition:.3s ease;

}


.contact-detail a:hover{

    color:var(--color-gold);

}


/*======================================
    CONTACT FORM WRAPPER
======================================*/

.contact-form-wrapper{

    padding:55px;

    border:1px solid rgba(0,0,0,.08);

    border-radius:28px;

    background:#faf9f7;

    box-shadow:0 25px 70px rgba(0,0,0,.06);

}


.contact-form{

    display:flex;

    flex-direction:column;

    gap:28px;

}


.contact-form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}


.contact-field{

    display:flex;

    flex-direction:column;

    gap:10px;

}


.contact-field label{

    color:var(--color-black);

    font-size:.75rem;

    font-weight:600;

    letter-spacing:1.5px;

    text-transform:uppercase;

}


.contact-field input,

.contact-field textarea{

    width:100%;

    box-sizing:border-box;

    padding:17px 18px;

    border:1px solid rgba(0,0,0,.12);

    border-radius:12px;

    outline:none;

    background:#fff;

    color:var(--color-black);

    font-family:inherit;

    font-size:.95rem;

    transition:.3s ease;

}


.contact-field textarea{

    min-height:170px;

    resize:vertical;

}


.contact-field input::placeholder,

.contact-field textarea::placeholder{

    color:#aaa;

}


.contact-field input:focus,

.contact-field textarea:focus{

    border-color:var(--color-gold);

    box-shadow:0 0 0 3px rgba(184,155,94,.08);

}


/*======================================
    CONTACT SUBMIT BUTTON
======================================*/

.contact-submit{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    width:100%;

    padding:19px 30px;

    border:0;

    border-radius:999px;

    background:var(--color-black);

    color:#fff;

    cursor:pointer;

    font-family:inherit;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s ease;

}


.contact-submit span{

    font-size:1.1rem;

    transition:.35s ease;

}


.contact-submit:hover{

    background:var(--color-gold);

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(184,155,94,.2);

}


.contact-submit:hover span{

    transform:translateX(5px);

}


/*======================================
    TABLET
======================================*/

@media(max-width:1000px){

    .contact-main .contact-container{

        grid-template-columns:1fr;

        gap:70px;

    }


    .contact-info{

        max-width:800px;

    }


    .contact-form-wrapper{

        max-width:800px;

    }

}


/*======================================
    MOBILE
======================================*/

@media(max-width:768px){

    .contact-hero{

        min-height:450px;

        padding:90px 20px;

    }


    .contact-hero h1{

        font-size:4rem;

        letter-spacing:-2px;

    }


    .contact-hero-content p{

        font-size:.95rem;

    }


    .contact-main{

        padding:90px 0;

    }


    .contact-main .contact-container{

        gap:55px;

    }


    .contact-info h2{

        font-size:3.2rem;

    }


    .contact-form-wrapper{

        padding:35px 25px;

        border-radius:22px;

    }


    .contact-form-row{

        grid-template-columns:1fr;

        gap:28px;

    }

}


/*======================================
    SMALL MOBILE
======================================*/

@media(max-width:480px){

    .contact-hero{

        min-height:420px;

    }


    .contact-hero h1{

        font-size:3.3rem;

    }


    .contact-eyebrow{

        letter-spacing:2.5px;

    }


    .contact-eyebrow::before,

    .contact-eyebrow::after{

        width:25px;

    }


    .contact-info h2{

        font-size:2.7rem;

    }


    .contact-form-wrapper{

        padding:30px 20px;

    }

}

/*==================================================
    UZAYO CONTACT.CSS
    PART 2 — SUPPORT + FINAL CTA
==================================================*/


/*======================================
    CONTACT SUPPORT
======================================*/

.contact-support{

    padding:140px 0;

    background:var(--color-grey-100);

}


.contact-support-heading{

    max-width:800px;

    margin:0 auto 80px;

    text-align:center;

}


.contact-support-heading h2{

    margin:0;

    font-family:var(--font-heading);

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

    letter-spacing:-2px;

    color:var(--color-black);

}


.contact-support-heading h2 span{

    color:var(--color-gold);

}


/*======================================
    SUPPORT GRID
======================================*/

.contact-support-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}


.contact-support-card{

    position:relative;

    display:flex;

    flex-direction:column;

    min-height:300px;

    padding:40px;

    background:var(--color-white);

    border:1px solid rgba(0,0,0,.07);

    border-radius:24px;

    color:var(--color-black);

    text-decoration:none;

    overflow:hidden;

    transition:.4s ease;

}


.contact-support-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:80%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.8),

        transparent

    );

    transform:skewX(-18deg);

    transition:.8s ease;

}


.contact-support-card:hover{

    transform:translateY(-10px);

    border-color:rgba(184,155,94,.3);

    box-shadow:0 25px 60px rgba(0,0,0,.1);

}


.contact-support-card:hover::before{

    left:150%;

}


.contact-support-card > span{

    color:var(--color-gold);

    font-size:.7rem;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:55px;

}


.contact-support-card h3{

    margin:0 0 15px;

    font-family:var(--font-heading);

    font-size:2rem;

}


.contact-support-card p{

    margin:0;

    color:var(--color-grey-600);

    line-height:1.8;

    font-size:.95rem;

}


.contact-support-card strong{

    margin-top:auto;

    padding-top:30px;

    font-size:.72rem;

    letter-spacing:1.5px;

    text-transform:uppercase;

    transition:.3s ease;

}


.contact-support-card:hover strong{

    color:var(--color-gold);

    transform:translateX(5px);

}


/*======================================
    FINAL CONTACT CTA
======================================*/

.contact-cta{

    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:100px 30px;

    overflow:hidden;

    background:#111;

    color:#fff;

}


.contact-cta::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    top:-350px;

    right:-180px;

    background:rgba(184,155,94,.14);

    filter:blur(80px);

}


.contact-cta::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    bottom:-280px;

    left:-150px;

    background:rgba(255,255,255,.035);

    filter:blur(70px);

}


.contact-cta-content{

    position:relative;

    z-index:2;

    text-align:center;

}


.contact-cta-content > span{

    display:block;

    margin-bottom:25px;

    color:var(--color-gold);

    font-size:.75rem;

    font-weight:600;

    letter-spacing:5px;

}


.contact-cta-content h2{

    margin:0 0 45px;

    font-family:var(--font-heading);

    font-size:clamp(3.5rem,7vw,7rem);

    line-height:.9;

    letter-spacing:-3px;

}


.contact-cta-content h2 em{

    color:var(--color-gold);

    font-style:normal;

}


/*======================================
    CTA BUTTON
======================================*/

.contact-cta-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 35px;

    border-radius:999px;

    background:#fff;

    color:#111;

    text-decoration:none;

    font-size:.72rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s ease;

}


.contact-cta-button:hover{

    background:var(--color-gold);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(184,155,94,.25);

}


/*======================================
    TABLET
======================================*/

@media(max-width:1000px){

    .contact-support-grid{

        grid-template-columns:1fr;

        max-width:700px;

        margin:0 auto;

    }


    .contact-support-card{

        min-height:260px;

    }

}


/*======================================
    MOBILE
======================================*/

@media(max-width:768px){

    .contact-support{

        padding:90px 0;

    }


    .contact-support-heading{

        margin-bottom:55px;

    }


    .contact-support-heading h2{

        font-size:3.2rem;

    }


    .contact-support-card{

        min-height:240px;

        padding:30px;

        border-radius:20px;

    }


    .contact-support-card > span{

        margin-bottom:40px;

    }


    .contact-cta{

        min-height:500px;

        padding:80px 20px;

    }


    .contact-cta-content h2{

        font-size:3.8rem;

        letter-spacing:-2px;

    }

}


/*======================================
    SMALL MOBILE
======================================*/

@media(max-width:480px){

    .contact-support-heading h2{

        font-size:2.7rem;

    }


    .contact-support-card h3{

        font-size:1.7rem;

    }


    .contact-cta-content h2{

        font-size:3rem;

    }


    .contact-cta-button{

        width:100%;

        min-width:0;

    }

}


/*======================================
    REDUCED MOTION
======================================*/

@media(prefers-reduced-motion:reduce){

    .contact-support-card,

    .contact-support-card::before,

    .contact-support-card strong,

    .contact-submit,

    .contact-submit span,

    .contact-cta-button{

        transition:none;

    }

}