/* =========================================================
   IKETAN.ID
   Contact Page Stylesheet
   ---------------------------------------------------------
   Scope:
   - Contact hero
   - Contact routes
   - Smart WhatsApp form
   - Feedback / complaint block
   - Collaboration section
   - Email & social
   - Closing section

   Global:
   /assets/css/global.css

   Responsive:
   /assets/css/responsive/kontak-responsive.css

   IMPORTANT:
   No responsive media queries in this file.
   ========================================================= */


/* =========================================================
   01. CONTACT PAGE GENERAL
   ========================================================= */

.contact-hero,
.contact-routes,
.contact-form-section,
.contact-feedback,
.contact-collaboration,
.contact-other,
.contact-closing {
    position: relative;
}


/* =========================================================
   02. CONTACT HERO
   ========================================================= */

.contact-hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top:
        calc(
            var(--navbar-height) +
            74px
        );

    padding-bottom: 90px;

    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(244, 183, 64, 0.22),
            transparent 24%
        ),
        radial-gradient(
            circle at 12% 82%,
            rgba(185, 40, 46, 0.07),
            transparent 24%
        ),
        var(--iketan-soft);
}


/* ---------------------------------------------------------
   Hero Ornament
   --------------------------------------------------------- */

.contact-hero::before {
    content: "";

    position: absolute;

    top: -70px;
    right: -80px;

    width: 280px;
    height: 280px;

    border:
        56px solid
        rgba(92, 13, 13, 0.045);

    border-radius: 50%;

    pointer-events: none;
}


.contact-hero::after {
    content: "";

    position: absolute;

    left: -90px;
    bottom: -110px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background-color:
        rgba(244, 183, 64, 0.10);

    pointer-events: none;
}


/* =========================================================
   03. CONTACT HERO CONTAINER
   ========================================================= */

.contact-hero-container {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, 0.92fr);

    align-items: center;

    gap: 90px;
}


/* =========================================================
   04. HERO CONTENT
   ========================================================= */

.contact-hero-content {
    width: 100%;
    max-width: 720px;
}


.contact-hero-content
.section-eyebrow {
    margin-bottom: 18px;
}


.contact-hero-title {
    max-width: 720px;

    margin-bottom: 24px;

    font-size:
        clamp(
            4.7rem,
            7.5vw,
            7.2rem
        );

    line-height: 0.91;
}


.contact-hero-title span {
    display: block;

    color:
        var(--iketan-red);
}


.contact-hero-description {
    max-width: 500px;

    margin-bottom: 30px;

    color:
        var(--iketan-muted);

    font-size:
        var(--text-md);

    line-height: 1.8;
}


/* =========================================================
   05. HERO SIDE CARD
   ========================================================= */

.contact-hero-side {
    position: relative;

    overflow: hidden;

    padding:
        38px;

    border:
        1px solid
        rgba(92, 13, 13, 0.10);

    border-radius:
        var(--radius-2xl);

    color:
        var(--iketan-white);

    background-color:
        var(--iketan-maroon);

    box-shadow:
        var(--shadow-md);
}


.contact-hero-side::before {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -55px;

    width: 170px;
    height: 170px;

    border:
        34px solid
        rgba(244, 183, 64, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.contact-hero-side-label {
    position: relative;

    z-index: 2;

    display: inline-flex;

    margin-bottom: 14px;

    color:
        var(--iketan-yellow);

    font-size:
        0.68rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.contact-hero-side > p {
    position: relative;

    z-index: 2;

    max-width: 370px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.68);

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Hero Route List
   --------------------------------------------------------- */

.contact-hero-side-list {
    position: relative;

    z-index: 2;

    display: grid;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}


.contact-hero-side-list span {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;

    padding-left: 22px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.14);

    color:
        var(--iketan-white);

    font-size:
        0.88rem;

    font-weight:
        var(--weight-bold);
}


.contact-hero-side-list span::before {
    content: "";

    position: absolute;

    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background-color:
        var(--iketan-yellow);
}


/* =========================================================
   06. CONTACT ROUTES
   ========================================================= */

.contact-routes {
    overflow: hidden;

    background-color:
        var(--iketan-cream);

    scroll-margin-top:
        calc(
            var(--navbar-height) +
            24px
        );
}


/* ---------------------------------------------------------
   Routes Header
   --------------------------------------------------------- */

.contact-routes-header {
    max-width: 700px;

    margin-bottom: 52px;
}


.contact-routes-header
.section-title {
    margin-bottom: 18px;

    font-size:
        clamp(
            3.7rem,
            6vw,
            5.8rem
        );

    line-height: 0.96;
}


/* =========================================================
   07. ROUTE GRID
   ========================================================= */

.contact-route-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px;
}


/* =========================================================
   08. ROUTE CARD
   ========================================================= */

.contact-route-card {
    position: relative;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding:
        30px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-2xl);

    background-color:
        var(--iketan-white);

    transition:
        transform
        var(--duration-slow)
        var(--ease-smooth),

        border-color
        var(--duration-slow)
        var(--ease-smooth),

        box-shadow
        var(--duration-slow)
        var(--ease-smooth);
}


.contact-route-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--maroon-14);

    box-shadow:
        var(--shadow-md);
}


/* ---------------------------------------------------------
   Route Number
   --------------------------------------------------------- */

.contact-route-index {
    margin-bottom: auto;

    padding-bottom: 36px;

    color:
        var(--iketan-red);

    font-size:
        0.7rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.08em;
}


/* ---------------------------------------------------------
   Route Content
   --------------------------------------------------------- */

.contact-route-content {
    display: flex;
    flex-direction: column;

    min-height: 300px;
}


.contact-route-label {
    margin-bottom: 9px;

    color:
        var(--iketan-red);

    font-size:
        0.66rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.contact-route-content h3 {
    max-width: 460px;

    margin-bottom: 15px;

    color:
        var(--iketan-maroon);

    font-family:
        var(--font-body);

    font-size:
        clamp(
            1.5rem,
            2.3vw,
            2.15rem
        );

    font-weight:
        var(--weight-extrabold);

    line-height: 1.25;
}


.contact-route-content > p {
    max-width: 460px;

    margin-bottom: 24px;

    color:
        var(--iketan-muted);

    font-size:
        var(--text-sm);

    line-height: 1.7;
}


/* =========================================================
   09. ROUTE META
   ========================================================= */

.contact-route-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-top: auto;
    margin-bottom: 20px;

    padding:
        14px
        16px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-md);

    background-color:
        var(--iketan-soft);
}


.contact-route-meta span {
    color:
        var(--iketan-muted);

    font-size:
        0.7rem;

    font-weight:
        var(--weight-semibold);
}


.contact-route-meta strong {
    color:
        var(--iketan-maroon);

    font-size:
        0.74rem;

    font-weight:
        var(--weight-extrabold);

    text-align: right;
}


/* =========================================================
   10. ROUTE LINK
   ========================================================= */

.contact-route-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 4px;

    border-bottom:
        1px solid
        rgba(92, 13, 13, 0.24);

    color:
        var(--iketan-maroon);

    font-size:
        0.8rem;

    font-weight:
        var(--weight-extrabold);

    transition:
        color
        var(--duration-fast)
        var(--ease-default),

        border-color
        var(--duration-fast)
        var(--ease-default);
}


.contact-route-link span {
    transition:
        transform
        var(--duration-normal)
        var(--ease-smooth);
}


.contact-route-link:hover {
    color:
        var(--iketan-red);

    border-color:
        var(--iketan-red);
}


.contact-route-link:hover span {
    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   11. FEEDBACK ROUTE CARD
   ========================================================= */

.contact-route-card-feedback {
    background:
        linear-gradient(
            135deg,
            rgba(244, 183, 64, 0.16),
            rgba(255, 255, 255, 1) 46%
        );
}


/* =========================================================
   12. FORM SECTION
   ========================================================= */

.contact-form-section {
    overflow: hidden;

    background-color:
        var(--iketan-soft);
}


.contact-form-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    align-items: start;

    gap: 90px;
}


/* =========================================================
   13. FORM INTRO
   ========================================================= */

.contact-form-intro {
    position: sticky;

    top:
        calc(
            var(--navbar-height) +
            44px
        );

    max-width: 520px;
}


.contact-form-intro
.section-title {
    margin-bottom: 22px;

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            5.2rem
        );

    line-height: 0.96;
}


.contact-form-intro > p {
    max-width: 460px;

    margin-bottom: 30px;

    color:
        var(--iketan-muted);

    line-height: 1.8;
}


/* ---------------------------------------------------------
   Form Note
   --------------------------------------------------------- */

.contact-form-note {
    max-width: 440px;

    padding:
        20px
        22px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-lg);

    background-color:
        var(--iketan-white);
}


.contact-form-note strong {
    display: block;

    margin-bottom: 5px;

    color:
        var(--iketan-maroon);

    font-size:
        0.84rem;

    font-weight:
        var(--weight-extrabold);
}


.contact-form-note p {
    color:
        var(--iketan-muted);

    font-size:
        0.78rem;

    line-height: 1.6;
}


/* =========================================================
   14. FORM CARD
   ========================================================= */

.contact-form-card {
    position: relative;

    overflow: hidden;

    padding:
        34px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-2xl);

    background-color:
        var(--iketan-white);

    box-shadow:
        var(--shadow-sm);
}


.contact-form-card::before {
    content: "";

    position: absolute;

    right: -60px;
    top: -70px;

    width: 190px;
    height: 190px;

    border:
        38px solid
        rgba(92, 13, 13, 0.035);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   15. FORM
   ========================================================= */

.contact-form {
    position: relative;

    z-index: 2;

    display: grid;

    gap: 22px;
}


/* ---------------------------------------------------------
   Form Group
   --------------------------------------------------------- */

.contact-form
.form-group {
    margin: 0;
}


.contact-form
.form-label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--iketan-ink);

    font-size:
        0.76rem;

    font-weight:
        var(--weight-extrabold);
}


/* ---------------------------------------------------------
   Input
   --------------------------------------------------------- */

.contact-form
.form-control {
    width: 100%;

    min-height: 52px;

    border-color:
        var(--iketan-border);

    background-color:
        var(--iketan-cream);

    transition:
        border-color
        var(--duration-fast)
        var(--ease-default),

        background-color
        var(--duration-fast)
        var(--ease-default),

        box-shadow
        var(--duration-fast)
        var(--ease-default);
}


.contact-form
.form-control:hover {
    border-color:
        rgba(92, 13, 13, 0.20);
}


.contact-form
.form-control:focus {
    border-color:
        var(--iketan-maroon);

    background-color:
        var(--iketan-white);

    box-shadow:
        0 0 0 4px
        var(--maroon-08);
}


/* ---------------------------------------------------------
   Textarea
   --------------------------------------------------------- */

.contact-form
.form-textarea {
    min-height: 140px;

    resize: vertical;
}


/* =========================================================
   16. PURPOSE FIELDSET
   ========================================================= */

.contact-purpose {
    margin: 0;
    padding: 0;

    border: 0;
}


.contact-purpose-options {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 10px;
}


/* =========================================================
   17. PURPOSE OPTION
   ========================================================= */

.contact-purpose-option {
    position: relative;

    min-height: 116px;

    display: flex;

    cursor: pointer;
}


.contact-purpose-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip:
        rect(
            0,
            0,
            0,
            0
        );

    clip-path:
        inset(50%);

    white-space: nowrap;
}


.contact-purpose-option > span {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        16px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-lg);

    background-color:
        var(--iketan-cream);

    transition:
        border-color
        var(--duration-fast)
        var(--ease-default),

        background-color
        var(--duration-fast)
        var(--ease-default),

        transform
        var(--duration-normal)
        var(--ease-smooth),

        box-shadow
        var(--duration-normal)
        var(--ease-smooth);
}


.contact-purpose-option strong {
    margin-bottom: 5px;

    color:
        var(--iketan-maroon);

    font-size:
        0.78rem;

    font-weight:
        var(--weight-extrabold);
}


.contact-purpose-option small {
    color:
        var(--iketan-muted);

    font-size:
        0.68rem;

    line-height: 1.45;
}


/* ---------------------------------------------------------
   Option Hover
   --------------------------------------------------------- */

.contact-purpose-option:hover > span {
    border-color:
        rgba(92, 13, 13, 0.22);

    transform:
        translateY(-2px);
}


/* ---------------------------------------------------------
   Option Checked
   --------------------------------------------------------- */

.contact-purpose-option input:checked + span {
    border-color:
        var(--iketan-maroon);

    background-color:
        var(--iketan-soft);

    box-shadow:
        0 0 0 3px
        var(--maroon-06);
}


/* ---------------------------------------------------------
   Option Focus
   --------------------------------------------------------- */

.contact-purpose-option input:focus-visible + span {
    outline:
        3px solid
        var(--iketan-yellow);

    outline-offset:
        3px;
}


/* =========================================================
   18. CONDITIONAL FIELDS
   ========================================================= */

.contact-form-conditional {
    display: grid;

    gap: 22px;

    padding:
        20px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-lg);

    background-color:
        var(--iketan-soft);
}


.contact-form-conditional[hidden] {
    display: none;
}


/* =========================================================
   19. FORM ERROR
   ========================================================= */

.contact-form
.form-error {
    display: block;

    margin-top: 6px;

    color:
        var(--iketan-red);

    font-size:
        0.68rem;

    font-weight:
        var(--weight-bold);
}


.contact-form
.form-error[hidden] {
    display: none;
}


/* ---------------------------------------------------------
   Invalid State
   --------------------------------------------------------- */

.contact-form
.form-control.is-invalid {
    border-color:
        var(--iketan-red);

    background-color:
        rgba(185, 40, 46, 0.035);
}


/* =========================================================
   20. FORM SUBMIT
   ========================================================= */

.contact-form-submit {
    min-height: 54px;

    gap: 10px;
}


.contact-form-submit span {
    transition:
        transform
        var(--duration-normal)
        var(--ease-smooth);
}


.contact-form-submit:hover span {
    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   21. FORM DISCLAIMER
   ========================================================= */

.contact-form-disclaimer {
    margin-top: -8px;

    color:
        var(--iketan-muted);

    font-size:
        0.67rem;

    line-height: 1.55;

    text-align: center;
}


/* =========================================================
   22. FEEDBACK SECTION
   ========================================================= */

.contact-feedback {
    padding-block:
        0
        var(--space-3xl);

    background-color:
        var(--iketan-soft);
}


/* ---------------------------------------------------------
   Feedback Card
   --------------------------------------------------------- */

.contact-feedback-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 54px;

    padding:
        36px
        40px;

    border-radius:
        var(--radius-2xl);

    color:
        var(--iketan-white);

    background-color:
        var(--iketan-maroon);
}


/* ---------------------------------------------------------
   Feedback Content
   --------------------------------------------------------- */

.contact-feedback-content {
    max-width: 620px;
}


.contact-feedback-eyebrow {
    display: inline-flex;

    margin-bottom: 10px;

    color:
        var(--iketan-yellow);

    font-size:
        0.65rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.contact-feedback-content h2 {
    margin-bottom: 10px;

    color:
        var(--iketan-white);

    font-size:
        clamp(
            2.6rem,
            4vw,
            3.8rem
        );

    line-height: 0.98;
}


.contact-feedback-content p {
    max-width: 520px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size:
        var(--text-sm);

    line-height: 1.7;
}


/* =========================================================
   23. COLLABORATION SECTION
   ========================================================= */

.contact-collaboration {
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* ---------------------------------------------------------
   Collaboration Layout
   --------------------------------------------------------- */

.contact-collaboration-layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    align-items: center;

    gap: 80px;
}


/* ---------------------------------------------------------
   Collaboration Content
   --------------------------------------------------------- */

.contact-collaboration-content {
    position: relative;

    z-index: 3;

    max-width: 650px;
}


.contact-collaboration-eyebrow {
    display: inline-flex;

    margin-bottom: 16px;

    color:
        var(--iketan-yellow);

    font-size:
        0.66rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.10em;

    text-transform:
        uppercase;
}


.contact-collaboration-content h2 {
    max-width: 650px;

    margin-bottom: 20px;

    color:
        var(--iketan-white);

    font-size:
        clamp(
            4rem,
            6vw,
            6rem
        );

    line-height: 0.93;
}


.contact-collaboration-content > p {
    max-width: 500px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.64);

    line-height: 1.75;
}


/* =========================================================
   24. COLLABORATION WORDS
   ========================================================= */

.contact-collaboration-words {
    position: relative;

    display: grid;

    gap: 8px;

    transform:
        rotate(-5deg);
}


.contact-collaboration-words span {
    display: block;

    width: fit-content;

    color:
        rgba(255, 255, 255, 0.07);

    font-family:
        var(--font-body);

    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );

    font-weight:
        800;

    line-height: 0.9;

    letter-spacing:
        -0.05em;
}


.contact-collaboration-words span:nth-child(2) {
    margin-left: 12%;
}


.contact-collaboration-words span:nth-child(3) {
    margin-left: 4%;
}


.contact-collaboration-words span:nth-child(4) {
    margin-left: 18%;
}


/* =========================================================
   25. OTHER CONTACT
   ========================================================= */

.contact-other {
    overflow: hidden;

    background-color:
        var(--iketan-cream);
}


/* ---------------------------------------------------------
   Other Header
   --------------------------------------------------------- */

.contact-other-header {
    max-width: 720px;

    margin-bottom: 50px;
}


.contact-other-header
.section-title {
    font-size:
        clamp(
            3.5rem,
            5.5vw,
            5.3rem
        );

    line-height: 0.96;
}


/* =========================================================
   26. OTHER CONTACT GRID
   ========================================================= */

.contact-other-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    border-top:
        1px solid
        var(--iketan-border);

    border-bottom:
        1px solid
        var(--iketan-border);
}


/* =========================================================
   27. OTHER CONTACT CARD
   ========================================================= */

.contact-other-card {
    min-height: 320px;

    display: flex;
    flex-direction: column;

    padding:
        30px;

    border-right:
        1px solid
        var(--iketan-border);

    transition:
        background-color
        var(--duration-normal)
        var(--ease-smooth);
}


.contact-other-card:last-child {
    border-right: 0;
}


.contact-other-card:hover {
    background-color:
        var(--iketan-soft);
}


.contact-other-label {
    margin-bottom: 28px;

    color:
        var(--iketan-red);

    font-size:
        0.66rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.contact-other-card h3 {
    margin-bottom: 12px;

    color:
        var(--iketan-maroon);

    font-family:
        var(--font-body);

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.75rem
        );

    font-weight:
        var(--weight-extrabold);

    overflow-wrap:
        anywhere;
}


.contact-other-card p {
    max-width: 310px;

    color:
        var(--iketan-muted);

    font-size:
        0.82rem;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   Other Contact Link
   --------------------------------------------------------- */

.contact-other-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: auto;

    padding-top: 26px;

    color:
        var(--iketan-maroon);

    font-size:
        0.76rem;

    font-weight:
        var(--weight-extrabold);
}


.contact-other-link span {
    transition:
        transform
        var(--duration-normal)
        var(--ease-smooth);
}


.contact-other-link:hover span {
    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   28. CONTACT CLOSING
   ========================================================= */

.contact-closing {
    overflow: hidden;

    padding-block:
        clamp(
            90px,
            11vw,
            150px
        );

    background-color:
        var(--iketan-soft);

    text-align: center;
}


/* ---------------------------------------------------------
   Closing Ornament
   --------------------------------------------------------- */

.contact-closing::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 460px;
    height: 460px;

    border:
        82px solid
        rgba(92, 13, 13, 0.035);

    border-radius: 50%;

    pointer-events: none;

    transform:
        translate(
            -50%,
            -50%
        );
}


/* ---------------------------------------------------------
   Closing Container
   --------------------------------------------------------- */

.contact-closing-container {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-closing-eyebrow {
    display: inline-flex;

    margin-bottom: 14px;

    color:
        var(--iketan-red);

    font-size:
        0.66rem;

    font-weight:
        var(--weight-extrabold);

    letter-spacing:
        0.10em;

    text-transform:
        uppercase;
}


.contact-closing h2 {
    max-width: 820px;

    margin-bottom: 30px;

    font-size:
        clamp(
            4rem,
            7vw,
            6.8rem
        );

    line-height: 0.91;
}


.contact-closing h2 span {
    display: block;

    color:
        var(--iketan-red);
}


/* =========================================================
   29. LOADING / SUBMIT STATE
   ========================================================= */

.contact-form.is-submitting {
    pointer-events: none;
}


.contact-form.is-submitting
.contact-form-submit {
    opacity: 0.72;
}


/* =========================================================
   30. SUCCESS / MESSAGE STATE
   ========================================================= */

/*
   kontak.js bisa menggunakan ini kalau dibutuhkan
   untuk temporary status sebelum membuka WhatsApp.
*/

.contact-form-status {
    padding:
        13px
        15px;

    border:
        1px solid
        var(--iketan-border);

    border-radius:
        var(--radius-md);

    background-color:
        var(--iketan-soft);

    color:
        var(--iketan-muted);

    font-size:
        0.75rem;

    line-height: 1.55;
}


.contact-form-status.is-error {
    border-color:
        rgba(185, 40, 46, 0.24);

    color:
        var(--iketan-red);

    background-color:
        rgba(185, 40, 46, 0.045);
}


/* =========================================================
   31. FOCUS STATES
   ========================================================= */

.contact-route-link:focus-visible,
.contact-other-link:focus-visible {
    outline:
        3px solid
        var(--iketan-yellow);

    outline-offset:
        5px;
}


/* =========================================================
   32. END OF CONTACT BASE STYLES
   ========================================================= */