/* =========================================================
   ASHGI.COM
   CONTACT PAGE
   assets/css/contact.css
========================================================= */


/* =========================================================
   DOMAIN CONTACT CTA
========================================================= */

.domain-cta {

    position: relative;

    min-height: calc(100vh - 70px);

    box-sizing: border-box;

    padding:
        110px 24px
        90px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background: transparent;

    color: #ffffff;
}


/* =========================================================
   SUBTLE CENTER GLOW
========================================================= */

.domain-cta::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 212, 255, 0.07) 0%,
            rgba(0, 212, 255, 0.025) 35%,
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.domain-cta-content {

    position: relative;

    z-index: 2;

    width: min(780px, 100%);

    margin: 0 auto;

    padding: 20px;
}


/* =========================================================
   HEADING
========================================================= */

.domain-cta h2 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(34px, 4.5vw, 58px);

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.5px;

    text-shadow:
        0 0 24px rgba(0, 212, 255, 0.12);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.domain-cta p {

    max-width: 760px;

    margin:
        22px auto
        34px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size:
        clamp(15px, 1.4vw, 18px);

    line-height: 1.7;
}


/* =========================================================
   DOMAIN ACQUISITION BUTTON
========================================================= */

.domain-cta .primary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 270px;

    min-height: 54px;

    box-sizing: border-box;

    padding:
        0 28px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #00d9ff 0%,
            #00b8ef 100%
        );

    color: #03111c;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 28px
        rgba(0, 195, 255, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}


.domain-cta .primary-btn:hover {

    transform:
        translateY(-3px);

    filter:
        brightness(1.06);

    box-shadow:
        0 15px 35px
        rgba(0, 195, 255, 0.32);
}


.domain-cta .primary-btn:active {

    transform:
        translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .domain-cta {

        min-height:
            calc(100vh - 64px);

        padding:
            100px 20px
            70px;
    }


    .domain-cta-content {

        padding:
            10px;
    }


    .domain-cta h2 {

        font-size:
            clamp(32px, 9vw, 44px);

        letter-spacing:
            -1px;
    }


    .domain-cta p {

        margin:
            18px auto
            28px;

        font-size:
            15px;

        line-height:
            1.65;
    }


    .domain-cta .primary-btn {

        width: 100%;

        max-width: 320px;

        min-width: 0;

        min-height: 52px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .domain-cta {

        padding:
            90px 16px
            60px;
    }


    .domain-cta h2 {

        font-size:
            31px;
    }


    .domain-cta p {

        font-size:
            14px;
    }


    .domain-cta .primary-btn {

        max-width:
            100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .domain-cta .primary-btn {

        transition: none;
    }

}
