/* =========================================================
   CLICK GROW DIGITAL
   CONTACT PAGE
   PREMIUM GREEN + OFF-WHITE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {

    position: relative;

    min-height: 52vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 145px 0 75px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(34,197,94,.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(34,197,94,.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8faf9,
            #ffffff
        );

}


.contact-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(34,197,94,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34,197,94,.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}


.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.contact-hero-content h1 {

    margin: 22px 0;

    font-size:
        clamp(46px, 5.5vw, 72px);

    line-height: 1.04;

    letter-spacing: -3px;

}


.contact-hero-content p {

    max-width: 680px;

    margin: auto;

    color: #64748b;

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-section {

    position: relative;

    overflow: hidden;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 65px;

    align-items: start;

}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {

    padding-top: 15px;

}


.contact-info h2 {

    max-width: 500px;

    margin: 20px 0 16px;

    color: #111827;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -1.8px;

}


.contact-intro {

    max-width: 520px;

    margin: 0 0 35px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    width: 100%;

    max-width: 500px;

    margin-bottom: 14px;

    padding: 16px 18px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius: 18px;

    background:
        rgba(255,255,255,.52);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 8px 25px
        rgba(15,23,42,.04);

    text-decoration: none;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.contact-item:hover {

    transform:
        translateX(6px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.07);

}


.contact-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        #ecfdf3;

    color: #16a34a;

    font-size: 16px;

}


.contact-item div:last-child {

    min-width: 0;

}


.contact-item span {

    display: block;

    margin-bottom: 4px;

    color: #94a3b8;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1px;

}


.contact-item strong {

    display: block;

    color: #1f2937;

    font-size: 12px;

    line-height: 1.4;

    word-break: break-word;

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.contact-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    padding: 13px 18px;

    border:
        1px solid
        rgba(34,197,94,.18);

    border-radius: 13px;

    background:
        #ecfdf3;

    color: #15803d;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


.contact-whatsapp i:first-child {

    font-size: 17px;

}


.contact-whatsapp i:last-child {

    font-size: 8px;

    opacity: .65;

}


.contact-whatsapp:hover {

    transform:
        translateY(-4px);

    background:
        #dcfce7;

    box-shadow:
        0 15px 30px
        rgba(22,163,74,.10);

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {

    position: relative;

    overflow: hidden;

    padding: 42px;

    border:
        1px solid
        rgba(255,255,255,.60);

    border-radius: 30px;

    background:
        rgba(255,255,255,.52);

    backdrop-filter: blur(28px);

    -webkit-backdrop-filter: blur(28px);

    box-shadow:
        0 25px 65px
        rgba(15,23,42,.07);

}


.contact-form::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #4ade80
        );

}


.form-heading {

    margin-bottom: 28px;

}


.form-heading h2 {

    margin: 15px 0 9px;

    color: #111827;

    font-size: 30px;

    line-height: 1.15;

    letter-spacing: -1px;

}


.form-heading p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .3px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    display: block;

    padding:
        13px 14px;

    border:
        1px solid
        rgba(15,23,42,.08);

    border-radius: 12px;

    outline: none;

    background:
        rgba(255,255,255,.72);

    color: #1f2937;

    font-family: inherit;

    font-size: 11px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #94a3b8;

}


.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {

    border-color:
        rgba(34,197,94,.15);

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(34,197,94,.45);

    background:
        #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(34,197,94,.08);

}


.form-group textarea {

    min-height: 110px;

    resize: vertical;

    line-height: 1.6;

}


/* =========================================================
   SELECT
========================================================= */

.form-group select {

    cursor: pointer;

    appearance: auto;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-form .btn {

    width: 100%;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 7px;

    border: none;

    cursor: pointer;

}


.contact-form .btn:disabled {

    opacity: .65;

    cursor: not-allowed;

    transform: none;

}


/* =========================================================
   FORM STATUS
========================================================= */

.form-status {

    min-height: 18px;

    margin-top: 13px;

    text-align: center;

    font-size: 10px;

    line-height: 1.5;

}


.form-status.success {

    color: #15803d;

}


.form-status.error {

    color: #dc2626;

}


/* =========================================================
   QUICK CTA
========================================================= */

.contact-quick-cta {

    position: relative;

    overflow: hidden;

}


.contact-quick-cta::before {

    content: "";

    position: absolute;

    top: -150px;

    right: -150px;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.09),
            transparent 70%
        );

    pointer-events: none;

}


.quick-cta-card {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 42px 48px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.60);

    border-radius: 28px;

    background:
        rgba(255,255,255,.50);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 20px 55px
        rgba(15,23,42,.06);

}


.quick-cta-card h2 {

    margin: 13px 0 7px;

    color: #111827;

    font-size: 28px;

    letter-spacing: -1px;

}


.quick-cta-card p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;

}


.quick-cta-card .btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width:1200px) {

    .contact-grid {

        gap: 40px;

    }


    .contact-form {

        padding: 35px;

    }

}


/* =========================================================
   RESPONSIVE — 992
========================================================= */

@media (max-width:992px) {

    .contact-hero {

        min-height: auto;

        padding:
            125px 0 65px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .contact-info {

        max-width: 700px;

        margin: auto;

        text-align: center;

    }


    .contact-info h2 {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-intro {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-item {

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }


    .contact-whatsapp {

        margin-top: 8px;

    }


    .contact-form {

        max-width: 700px;

        width: 100%;

        margin: auto;

    }

}


/* =========================================================
   RESPONSIVE — 768
========================================================= */

@media (max-width:768px) {

    .contact-hero {

        padding:
            105px 0 55px;

    }


    .contact-hero-content h1 {

        font-size: 45px;

        letter-spacing: -2px;

    }


    .contact-hero-content p {

        font-size: 13px;

        line-height: 1.75;

    }


    .contact-info {

        text-align: center;

    }


    .contact-info h2 {

        font-size: 37px;

    }


    .contact-intro {

        font-size: 12px;

    }


    .contact-form {

        padding: 30px 24px;

        border-radius: 25px;

    }


    .form-heading h2 {

        font-size: 27px;

    }


    .quick-cta-card {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 28px;

        border-radius: 25px;

    }


    .quick-cta-card .btn {

        width: 100%;

    }

}


/* =========================================================
   RESPONSIVE — 480
========================================================= */

@media (max-width:480px) {

    .contact-hero-content h1 {

        font-size: 36px;

        letter-spacing: -1.5px;

    }


    .contact-hero-content p {

        font-size: 12px;

    }


    .contact-info h2 {

        font-size: 31px;

    }


    .contact-intro {

        font-size: 11px;

    }


    .contact-item {

        padding: 13px;

        gap: 11px;

        border-radius: 15px;

    }


    .contact-icon {

        width: 40px;

        height: 40px;

        border-radius: 11px;

        font-size: 14px;

    }


    .contact-item strong {

        font-size: 10px;

    }


    .contact-item span {

        font-size: 7px;

    }


    .contact-whatsapp {

        width: 100%;

        justify-content: center;

        font-size: 9px;

    }


    .contact-form {

        padding: 25px 18px;

        border-radius: 22px;

    }


    .form-heading {

        margin-bottom: 23px;

    }


    .form-heading h2 {

        font-size: 24px;

    }


    .form-heading p {

        font-size: 10px;

    }


    .form-group {

        margin-bottom: 14px;

    }


    .form-group label {

        font-size: 8px;

    }


    .form-group input,
    .form-group select,
    .form-group textarea {

        padding:
            12px;

        font-size: 10px;

    }


    .form-group textarea {

        min-height: 100px;

    }


    .contact-form .btn {

        min-height: 45px;

        font-size: 10px;

    }


    .quick-cta-card {

        padding:
            30px 22px;

    }


    .quick-cta-card h2 {

        font-size: 24px;

    }


    .quick-cta-card p {

        font-size: 10px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-item,
    .contact-whatsapp,
    .quick-cta-card {

        transition: none;

    }

}


/* =========================================================
   PERFORMANCE
========================================================= */

.contact-item,
.contact-whatsapp,
.contact-form,
.quick-cta-card {

    will-change: transform;

}


/* =========================================================
   END CONTACT PAGE
========================================================= */