/* ============================================================
   AMRIT GITA — CONTACT
   File: css/contact.css
   Scope: contact.html only
============================================================ */


/* ============================================================
   PAGE
============================================================ */

body.contact-page {
    background: #fbf6ec;
}

body.contact-page [hidden] {
    display: none !important;
}

body.contact-page .contact-main {
    position: relative;
    overflow: hidden;
}

body.contact-page .contact-small-label {
    display: block;

    margin-bottom: 8px;

    color: var(--ag-gold-dark, #9b681f);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


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

body.contact-page .contact-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding:
        calc(var(--ag-header-height, 78px) + 44px)
        0
        84px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 83% 24%,
            rgba(213, 155, 59, 0.17),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 82%,
            rgba(205, 141, 42, 0.08),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #fdf9f0 0%,
            #f8eddd 100%
        );
}

body.contact-page .contact-hero::after {
    content: "ॐ";

    position: absolute;

    right: 4%;
    top: 50%;

    color: rgba(171, 108, 20, 0.03);

    font-family:
        "Nirmala UI",
        "Mangal",
        Georgia,
        serif;

    font-size: clamp(210px, 22vw, 360px);

    line-height: 1;

    transform: translateY(-50%);

    pointer-events: none;
}

body.contact-page .contact-hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

body.contact-page .contact-hero-glow-one {
    width: 680px;
    height: 680px;

    right: -280px;
    top: -320px;

    background:
        radial-gradient(
            circle,
            rgba(210, 145, 36, 0.16),
            transparent 70%
        );
}

body.contact-page .contact-hero-glow-two {
    width: 430px;
    height: 430px;

    left: -215px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(200, 137, 42, 0.09),
            transparent 70%
        );
}


/* ============================================================
   BACK LINK
============================================================ */

body.contact-page .contact-back-row {
    position: relative;
    z-index: 5;

    margin-bottom: 36px;
}

body.contact-page .contact-back-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--ag-text-muted, #8a7966);

    font-size: 11px;
    font-weight: 750;

    transition:
        color var(--ag-transition, 180ms ease),
        transform var(--ag-transition, 180ms ease);
}

body.contact-page .contact-back-link:hover {
    color: var(--ag-saffron-dark, #b95508);

    transform: translateX(-3px);
}


/* ============================================================
   HERO LAYOUT
============================================================ */

body.contact-page .contact-hero-layout {
    position: relative;
    z-index: 4;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, 0.92fr);

    align-items: center;

    gap: 70px;
}

body.contact-page .contact-hero-copy {
    max-width: 760px;
}

body.contact-page .contact-kicker {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    padding:
        10px
        15px;

    border:
        1px solid
        rgba(185, 123, 26, 0.24);

    border-radius: 999px;

    color: #966019;

    background:
        rgba(255, 251, 242, 0.72);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

body.contact-page .contact-hero-copy h1 {
    max-width: 740px;

    margin-bottom: 19px;

    color: var(--ag-text, #30251c);

    font-size: clamp(52px, 5.7vw, 78px);
    font-weight: 850;

    line-height: 0.99;

    letter-spacing: -0.058em;
}

body.contact-page .contact-hero-copy > p {
    max-width: 650px;

    margin-bottom: 30px;

    color: var(--ag-text-soft, #715e4a);

    font-size: 15px;

    line-height: 1.82;
}


/* ============================================================
   HERO META
============================================================ */

body.contact-page .contact-hero-meta {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 18px;

    padding:
        13px
        17px;

    border:
        1px solid
        rgba(107, 79, 47, 0.11);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.64);

    backdrop-filter: blur(8px);
}

body.contact-page .contact-hero-meta > div {
    min-width: 78px;

    display: flex;
    flex-direction: column;
}

body.contact-page .contact-hero-meta span {
    margin-bottom: 3px;

    color: var(--ag-text-muted, #8a7966);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

body.contact-page .contact-hero-meta strong {
    color: var(--ag-text, #30251c);

    font-size: 10px;
}

body.contact-page .contact-meta-divider {
    width: 1px;
    height: 30px;

    background:
        rgba(107, 79, 47, 0.11);
}


/* ============================================================
   HERO SYMBOL
============================================================ */

body.contact-page .contact-hero-symbol-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.contact-page .contact-hero-symbol-orbit {
    position: relative;

    width: 380px;
    height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;
}

body.contact-page .contact-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

body.contact-page .contact-orbit-one {
    width: 370px;
    height: 370px;

    border:
        1px solid
        rgba(182, 121, 27, 0.20);
}

body.contact-page .contact-orbit-one::before {
    content: "";

    position: absolute;

    inset: 14px;

    border:
        1px dotted
        rgba(181, 121, 27, 0.15);

    border-radius: 50%;
}

body.contact-page .contact-orbit-two {
    width: 300px;
    height: 300px;

    border:
        1px dashed
        rgba(183, 122, 29, 0.24);

    animation:
        contactOrbitRotate
        34s
        linear
        infinite;
}

body.contact-page .contact-hero-symbol {
    position: relative;
    z-index: 3;

    width: 220px;
    height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(182, 120, 27, 0.24);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #f4dfba
        );

    box-shadow:
        0 28px 80px
        rgba(94, 60, 16, 0.16);

    text-align: center;
}

body.contact-page .contact-hero-symbol > span {
    display: block;

    margin-bottom: 12px;

    color: #9a6116;

    font-family:
        "Nirmala UI",
        "Mangal",
        serif;

    font-size: 66px;

    line-height: 1;
}

body.contact-page .contact-hero-symbol strong {
    margin-bottom: 4px;

    color: var(--ag-text, #30251c);

    font-size: 13px;
}

body.contact-page .contact-hero-symbol small {
    color: var(--ag-text-muted, #8a7966);

    font-size: 8px;
}


/* ============================================================
   PAGE MESSAGE
============================================================ */

body.contact-page .contact-message-section {
    position: relative;
    z-index: 5;

    background: #ffffff;
}

body.contact-page .contact-page-message {
    margin-top: 18px;

    padding:
        14px
        17px;

    border-radius: 13px;

    font-size: 11px;
    font-weight: 750;

    line-height: 1.6;
}

body.contact-page .contact-message-info {
    border:
        1px solid
        rgba(184, 130, 40, 0.20);

    color: #875917;

    background: #fff7e7;
}

body.contact-page .contact-message-success {
    border:
        1px solid
        rgba(65, 129, 83, 0.20);

    color: #39734a;

    background: #eef8f1;
}

body.contact-page .contact-message-error {
    border:
        1px solid
        rgba(161, 62, 50, 0.18);

    color: #973e32;

    background: #fff2ef;
}


/* ============================================================
   CONTACT EXPERIENCE
============================================================ */

body.contact-page .contact-experience-section {
    padding:
        105px
        0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbf6ec
        );
}

body.contact-page .contact-layout {
    display: grid;

    grid-template-columns:
        330px
        minmax(0, 1fr);

    align-items: start;

    gap: 27px;
}


/* ============================================================
   LEFT COLUMN
============================================================ */

body.contact-page .contact-information-column {
    min-width: 0;

    display: grid;

    gap: 17px;
}

body.contact-page .contact-information-card,
body.contact-page .contact-company-card,
body.contact-page .contact-quick-help-card {
    border:
        1px solid
        rgba(108, 81, 50, 0.10);

    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 14px 42px
        rgba(72, 45, 17, 0.045);
}

body.contact-page .contact-information-card {
    padding:
        27px
        24px;
}

body.contact-page .contact-information-card h2 {
    margin-bottom: 10px;

    color: var(--ag-text, #30251c);

    font-size: 26px;

    line-height: 1.14;

    letter-spacing: -0.035em;
}

body.contact-page .contact-information-card > p {
    margin-bottom: 21px;

    color: var(--ag-text-soft, #715e4a);

    font-size: 9px;

    line-height: 1.7;
}


/* ============================================================
   TOPIC LIST
============================================================ */

body.contact-page .contact-topic-list {
    display: grid;

    gap: 9px;
}

body.contact-page .contact-topic-card {
    width: 100%;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    align-items: center;

    gap: 11px;

    padding:
        12px
        13px;

    border:
        1px solid
        rgba(108, 81, 50, 0.09);

    border-radius: 14px;

    color: inherit;

    background: #fcfaf7;

    text-align: left;

    cursor: pointer;

    transition:
        transform var(--ag-transition, 180ms ease),
        border-color var(--ag-transition, 180ms ease),
        background var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease);
}

body.contact-page .contact-topic-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(182, 121, 28, 0.20);

    background: #fffaf1;

    box-shadow:
        0 8px 22px
        rgba(89, 56, 17, 0.055);
}

body.contact-page .contact-topic-card.active,
body.contact-page .contact-topic-card.is-selected,
body.contact-page .contact-topic-card[aria-pressed="true"] {
    border-color:
        rgba(190, 119, 16, 0.30);

    background:
        linear-gradient(
            145deg,
            #fffaf1,
            #f6e5c9
        );

    box-shadow:
        inset 0 0 0 1px
        rgba(190, 119, 16, 0.05);
}

body.contact-page .contact-topic-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(179, 119, 28, 0.14);

    border-radius: 12px;

    color: #996119;

    background: #fff7e9;

    font-family:
        "Nirmala UI",
        Georgia,
        serif;

    font-size: 14px;
    font-weight: 800;
}

body.contact-page .contact-topic-card strong {
    display: block;

    margin-bottom: 2px;

    color: var(--ag-text, #30251c);

    font-size: 9px;
}

body.contact-page .contact-topic-card small {
    display: block;

    color: var(--ag-text-muted, #8a7966);

    font-size: 7px;

    line-height: 1.45;
}


/* ============================================================
   COMPANY CARD
============================================================ */

body.contact-page .contact-company-card {
    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr);

    align-items: start;

    gap: 14px;

    padding:
        20px;
}

body.contact-page .contact-company-symbol {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(181, 120, 28, 0.18);

    border-radius: 50%;

    color: #986018;

    background:
        radial-gradient(
            circle,
            #ffffff,
            #f5e2c4
        );

    font-family:
        Georgia,
        serif;

    font-size: 17px;
    font-weight: 750;
}

body.contact-page .contact-company-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--ag-text, #30251c);

    font-size: 10px;
}

body.contact-page .contact-company-card p {
    margin:
        0
        0
        8px;

    color: var(--ag-text-muted, #8a7966);

    font-size: 8px;

    line-height: 1.55;
}

body.contact-page .contact-company-card a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--ag-saffron-dark, #b55207);

    font-size: 7px;
    font-weight: 850;

    transition:
        gap var(--ag-transition, 180ms ease);
}

body.contact-page .contact-company-card a:hover {
    gap: 9px;
}


/* ============================================================
   QUICK HELP
============================================================ */

body.contact-page .contact-quick-help-card {
    padding:
        22px
        20px;
}

body.contact-page .contact-quick-help-card h3 {
    margin-bottom: 15px;

    color: var(--ag-text, #30251c);

    font-size: 16px;

    line-height: 1.2;
}

body.contact-page .contact-quick-links {
    display: grid;
}

body.contact-page .contact-quick-links a {
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding:
        0
        3px;

    border-bottom:
        1px solid
        rgba(105, 79, 48, 0.08);

    color: var(--ag-text-soft, #715e4a);

    font-size: 8px;
    font-weight: 700;

    transition:
        color var(--ag-transition, 180ms ease),
        padding var(--ag-transition, 180ms ease);
}

body.contact-page .contact-quick-links a:last-child {
    border-bottom: 0;
}

body.contact-page .contact-quick-links a:hover {
    padding-left: 5px;

    color: var(--ag-saffron-dark, #b55207);
}


/* ============================================================
   RIGHT COLUMN
============================================================ */

body.contact-page .contact-form-column {
    min-width: 0;
}


/* ============================================================
   FORM CARD
============================================================ */

body.contact-page .contact-form-card {
    padding:
        34px
        35px;

    border:
        1px solid
        rgba(108, 81, 50, 0.10);

    border-radius: 27px;

    background: #ffffff;

    box-shadow:
        0 20px 62px
        rgba(72, 45, 17, 0.06);
}

body.contact-page .contact-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 29px;
}

body.contact-page .contact-form-heading h2 {
    max-width: 680px;

    margin-bottom: 9px;

    color: var(--ag-text, #30251c);

    font-size: clamp(28px, 3.4vw, 42px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

body.contact-page .contact-form-heading p {
    max-width: 630px;

    margin: 0;

    color: var(--ag-text-muted, #8a7966);

    font-size: 9px;

    line-height: 1.7;
}

body.contact-page .contact-form-number {
    flex-shrink: 0;

    color:
        rgba(155, 98, 15, 0.18);

    font-family:
        Georgia,
        serif;

    font-size: 33px;
}


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

body.contact-page .contact-form {
    display: grid;

    gap: 18px;
}

body.contact-page .contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;
}


/* ============================================================
   FIELDS
============================================================ */

body.contact-page .contact-field {
    min-width: 0;

    display: grid;

    gap: 7px;
}

body.contact-page .contact-field label {
    color: var(--ag-text, #30251c);

    font-size: 9px;
    font-weight: 800;
}

body.contact-page .contact-field label span {
    color: #b55207;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select,
body.contact-page .contact-field textarea {
    width: 100%;

    border:
        1px solid
        rgba(112, 83, 51, 0.14);

    border-radius: 13px;

    color: var(--ag-text, #30251c);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fcfaf7
        );

    font: inherit;

    font-size: 10px;

    outline: none;

    transition:
        border-color var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease),
        background var(--ag-transition, 180ms ease);
}

body.contact-page .contact-field input,
body.contact-page .contact-field select {
    min-height: 47px;

    padding:
        0
        14px;
}

body.contact-page .contact-field textarea {
    min-height: 175px;

    resize: vertical;

    padding:
        14px;

    line-height: 1.65;
}

body.contact-page .contact-field input::placeholder,
body.contact-page .contact-field textarea::placeholder {
    color: #ad9d8c;
}

body.contact-page .contact-field select {
    cursor: pointer;
}

body.contact-page .contact-field input:focus,
body.contact-page .contact-field select:focus,
body.contact-page .contact-field textarea:focus {
    border-color:
        rgba(190, 119, 16, 0.42);

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(218, 136, 18, 0.08);
}


/* ============================================================
   FIELD ERRORS
============================================================ */

body.contact-page .contact-field input.has-error,
body.contact-page .contact-field select.has-error,
body.contact-page .contact-field textarea.has-error,
body.contact-page .contact-field [aria-invalid="true"] {
    border-color:
        rgba(164, 71, 58, 0.48);

    background: #fffafa;

    box-shadow:
        0 0 0 4px
        rgba(164, 71, 58, 0.06);
}

body.contact-page .contact-field-error {
    color: #a1483b;

    font-size: 7px;
    font-weight: 700;

    line-height: 1.45;
}

body.contact-page .contact-field-note {
    color: var(--ag-text-muted, #8a7966);

    font-size: 7px;

    line-height: 1.5;
}


/* ============================================================
   FIELD FOOTER
============================================================ */

body.contact-page .contact-field-footer {
    min-height: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

body.contact-page .contact-character-count {
    margin-left: auto;

    color: var(--ag-text-muted, #8a7966);

    font-size: 7px;

    white-space: nowrap;

    transition:
        color var(--ag-transition, 180ms ease);
}

body.contact-page
.contact-character-count.near-limit {
    color: #b45a0b;

    font-weight: 800;
}


/* ============================================================
   PAYMENT REFERENCE
============================================================ */

body.contact-page .contact-payment-reference-field {
    padding:
        15px;

    border:
        1px solid
        rgba(181, 126, 39, 0.13);

    border-radius: 16px;

    background: #fff9ee;
}


/* ============================================================
   SAFETY NOTE
============================================================ */

body.contact-page .contact-safety-note {
    display: grid;

    grid-template-columns:
        32px
        minmax(0, 1fr);

    align-items: start;

    gap: 10px;

    padding:
        13px
        14px;

    border:
        1px solid
        rgba(183, 126, 39, 0.15);

    border-radius: 14px;

    background: #fff9ee;
}

body.contact-page .contact-safety-note > span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #936119;

    background: #fff0d3;

    font-family:
        Georgia,
        serif;

    font-size: 11px;
    font-weight: 800;
}

body.contact-page .contact-safety-note p {
    margin: 0;

    color: #806747;

    font-size: 8px;

    line-height: 1.65;
}

body.contact-page .contact-safety-note strong {
    color: #684a29;
}


/* ============================================================
   FORM ERROR
============================================================ */

body.contact-page .contact-form-error {
    padding:
        12px
        14px;

    border:
        1px solid
        rgba(161, 62, 50, 0.18);

    border-radius: 12px;

    color: #973e32;

    background: #fff2ef;

    font-size: 8px;
    font-weight: 750;

    line-height: 1.6;
}


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

body.contact-page .contact-form-action-row {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    padding-top: 5px;
}

body.contact-page .contact-submit-button {
    min-width: 155px;
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0
        20px;

    border: 0;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--ag-saffron, #df7b14),
            var(--ag-saffron-dark, #b55207)
        );

    box-shadow:
        0 12px 28px
        rgba(177, 78, 5, 0.19);

    font-size: 9px;
    font-weight: 850;

    cursor: pointer;

    transition:
        transform var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease),
        opacity var(--ag-transition, 180ms ease);
}

body.contact-page
.contact-submit-button:not(:disabled):hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 35px
        rgba(177, 78, 5, 0.26);
}

body.contact-page .contact-submit-button:disabled {
    opacity: 0.58;

    box-shadow: none;

    cursor: not-allowed;
}

body.contact-page .contact-submit-button.is-loading {
    pointer-events: none;
}

body.contact-page
.contact-submit-button.is-loading
span:last-child {
    animation:
        contactButtonPulse
        0.9s
        ease-in-out
        infinite;
}

body.contact-page .contact-submit-note {
    color: var(--ag-text-muted, #8a7966);

    font-size: 7px;
}


/* ============================================================
   SUCCESS CARD
============================================================ */

body.contact-page .contact-success-card {
    width: 100%;

    padding:
        57px
        44px;

    border:
        1px solid
        rgba(70, 129, 85, 0.18);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at top right,
            rgba(79, 138, 93, 0.08),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f1f8f3
        );

    box-shadow:
        0 24px 72px
        rgba(57, 101, 70, 0.08);

    text-align: center;
}

body.contact-page .contact-success-icon {
    width: 88px;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto
        22px;

    border:
        1px solid
        rgba(65, 128, 82, 0.18);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #f6fff8,
            #e6f6ea
        );
}

body.contact-page .contact-success-icon > span {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #67a575,
            #3f7750
        );

    font-size: 24px;
    font-weight: 900;
}

body.contact-page .contact-success-card h2 {
    max-width: 620px;

    margin:
        0 auto
        12px;

    color: var(--ag-text, #30251c);

    font-size: clamp(30px, 3.8vw, 44px);

    line-height: 1.1;

    letter-spacing: -0.042em;
}

body.contact-page .contact-success-card > p {
    max-width: 550px;

    margin:
        0 auto
        22px;

    color: var(--ag-text-soft, #715e4a);

    font-size: 10px;

    line-height: 1.8;
}

body.contact-page .contact-reference-row {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    margin:
        0 auto
        23px;

    padding:
        9px
        13px;

    border:
        1px solid
        rgba(68, 126, 82, 0.13);

    border-radius: 999px;

    background: #f7fcf8;
}

body.contact-page .contact-reference-row span {
    color: #65816c;

    font-size: 7px;
}

body.contact-page .contact-reference-row strong {
    color: #447a52;

    font-size: 8px;
}

body.contact-page .contact-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

body.contact-page .contact-new-message-button,
body.contact-page .contact-home-button {
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0
        18px;

    border-radius: 12px;

    font-size: 9px;
    font-weight: 850;

    transition:
        transform var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease),
        border-color var(--ag-transition, 180ms ease);
}

body.contact-page .contact-new-message-button {
    border: 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #5e9a6c,
            #3d754c
        );

    box-shadow:
        0 10px 25px
        rgba(61, 117, 76, 0.17);

    cursor: pointer;
}

body.contact-page .contact-home-button {
    border:
        1px solid
        rgba(112, 83, 51, 0.13);

    color: var(--ag-text, #30251c);

    background: #ffffff;
}

body.contact-page .contact-new-message-button:hover,
body.contact-page .contact-home-button:hover {
    transform: translateY(-2px);
}


/* ============================================================
   LOADING CARD
============================================================ */

body.contact-page .contact-loading-card {
    width: 100%;

    padding:
        60px
        42px;

    border:
        1px solid
        rgba(181, 121, 29, 0.16);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at top right,
            rgba(212, 153, 57, 0.10),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #fbf2e3
        );

    box-shadow:
        0 23px 68px
        rgba(72, 45, 17, 0.08);

    text-align: center;
}

body.contact-page .contact-loading-symbol {
    position: relative;

    width: 91px;
    height: 91px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto
        22px;
}

body.contact-page .contact-loading-symbol > span {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(179, 118, 27, 0.18);

    border-radius: 50%;

    color: #9b6216;

    background: #fff8eb;

    font-family:
        "Nirmala UI",
        serif;

    font-size: 27px;
}

body.contact-page .contact-loading-ring {
    position: absolute;

    inset: 0;

    border:
        2px solid
        rgba(180, 121, 29, 0.12);

    border-top-color:
        var(--ag-saffron, #df7b14);

    border-radius: 50%;

    animation:
        contactLoadingRotate
        1s
        linear
        infinite;
}

body.contact-page .contact-loading-card h2 {
    margin-bottom: 9px;

    color: var(--ag-text, #30251c);

    font-size: clamp(28px, 3.5vw, 40px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

body.contact-page .contact-loading-card > p {
    max-width: 460px;

    margin:
        0 auto
        18px;

    color: var(--ag-text-soft, #715e4a);

    font-size: 10px;

    line-height: 1.7;
}

body.contact-page .contact-loading-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;
}

body.contact-page .contact-loading-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #b47a2c;

    animation:
        contactLoadingDot
        1.1s
        ease-in-out
        infinite;
}

body.contact-page
.contact-loading-dots span:nth-child(2) {
    animation-delay: 0.14s;
}

body.contact-page
.contact-loading-dots span:nth-child(3) {
    animation-delay: 0.28s;
}


/* ============================================================
   COMMON SECTION HEADING
============================================================ */

body.contact-page .contact-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(300px, 0.5fr);

    align-items: end;

    gap: 56px;

    margin-bottom: 40px;
}

body.contact-page .contact-section-heading h2 {
    margin: 0;

    color: var(--ag-text, #30251c);

    font-size: clamp(37px, 4.3vw, 53px);

    line-height: 1.07;

    letter-spacing: -0.046em;
}

body.contact-page .contact-section-heading > p {
    margin: 0;

    color: var(--ag-text-soft, #715e4a);

    font-size: 11px;

    line-height: 1.82;
}


/* ============================================================
   SUPPORT SECTION
============================================================ */

body.contact-page .contact-support-section {
    padding:
        110px
        0;

    background:
        linear-gradient(
            180deg,
            #fbf6ec,
            #f8eddd
        );
}

body.contact-page .contact-support-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 15px;
}

body.contact-page .contact-support-grid article {
    position: relative;

    min-height: 255px;

    padding:
        24px
        22px;

    overflow: hidden;

    border:
        1px solid
        rgba(108, 81, 50, 0.09);

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 14px 40px
        rgba(72, 45, 17, 0.045);

    transition:
        transform var(--ag-transition, 180ms ease),
        border-color var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease);
}

body.contact-page .contact-support-grid article:hover {
    transform: translateY(-4px);

    border-color:
        rgba(184, 122, 27, 0.22);

    box-shadow:
        0 20px 48px
        rgba(72, 45, 17, 0.075);
}

body.contact-page .contact-support-number {
    position: absolute;

    right: 18px;
    top: 17px;

    color:
        rgba(155, 98, 15, 0.18);

    font-family:
        Georgia,
        serif;

    font-size: 25px;
}

body.contact-page .contact-support-icon {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 37px;

    border:
        1px solid
        rgba(179, 120, 30, 0.16);

    border-radius: 16px;

    color: #9b6318;

    background:
        linear-gradient(
            145deg,
            #fffaf1,
            #f7e7cd
        );

    font-family:
        "Nirmala UI",
        Georgia,
        serif;

    font-size: 18px;
}

body.contact-page .contact-support-grid h3 {
    margin-bottom: 9px;

    color: var(--ag-text, #30251c);

    font-size: 17px;

    line-height: 1.2;

    letter-spacing: -0.025em;
}

body.contact-page .contact-support-grid p {
    margin: 0;

    color: var(--ag-text-muted, #8a7966);

    font-size: 9px;

    line-height: 1.72;
}


/* ============================================================
   FAQ
============================================================ */

body.contact-page .contact-faq-section {
    padding:
        110px
        0;

    background: #ffffff;
}

body.contact-page .contact-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.7fr)
        minmax(0, 1fr);

    align-items: start;

    gap: 75px;
}

body.contact-page .contact-faq-heading {
    position: sticky;

    top:
        calc(
            var(--ag-header-height, 78px)
            +
            28px
        );
}

body.contact-page .contact-faq-heading h2 {
    max-width: 480px;

    margin-bottom: 13px;

    color: var(--ag-text, #30251c);

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

    line-height: 1.08;

    letter-spacing: -0.044em;
}

body.contact-page .contact-faq-heading p {
    max-width: 430px;

    margin: 0;

    color: var(--ag-text-soft, #715e4a);

    font-size: 11px;

    line-height: 1.8;
}

body.contact-page .contact-faq-list {
    display: grid;

    border-top:
        1px solid
        rgba(105, 79, 48, 0.09);
}

body.contact-page .contact-faq-item {
    border-bottom:
        1px solid
        rgba(105, 79, 48, 0.09);
}

body.contact-page .contact-faq-item summary {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        16px
        4px;

    color: var(--ag-text, #30251c);

    font-size: 12px;
    font-weight: 800;

    list-style: none;

    cursor: pointer;
}

body.contact-page
.contact-faq-item summary::-webkit-details-marker {
    display: none;
}

body.contact-page
.contact-faq-item summary > span {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(180, 120, 29, 0.16);

    border-radius: 50%;

    color: #956019;

    background: #fff8eb;

    font-size: 15px;

    transition:
        transform var(--ag-transition, 180ms ease),
        background var(--ag-transition, 180ms ease);
}

body.contact-page
.contact-faq-item[open]
summary > span {
    transform: rotate(45deg);

    background: #f7e4c6;
}

body.contact-page .contact-faq-item p {
    max-width: 720px;

    margin:
        -2px
        0
        22px;

    padding-right: 48px;

    color: var(--ag-text-soft, #715e4a);

    font-size: 10px;

    line-height: 1.8;
}


/* ============================================================
   FINAL CTA
============================================================ */

body.contact-page .contact-final-section {
    padding:
        5px
        0
        110px;

    background: #ffffff;
}

body.contact-page .contact-final-card {
    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 31px;

    padding:
        39px
        42px;

    border:
        1px solid
        rgba(181, 121, 29, 0.17);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at top right,
            rgba(214, 157, 61, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffdf8,
            #f6e7cf
        );
}

body.contact-page .contact-final-symbol {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(181, 120, 28, 0.20);

    border-radius: 50%;

    color: #9b6216;

    background:
        rgba(255, 255, 255, 0.72);

    font-family:
        "Nirmala UI",
        "Mangal",
        serif;

    font-size: 30px;
}

body.contact-page .contact-final-card h2 {
    margin-bottom: 8px;

    color: var(--ag-text, #30251c);

    font-size: clamp(28px, 3.3vw, 42px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

body.contact-page .contact-final-card p {
    max-width: 650px;

    margin: 0;

    color: var(--ag-text-soft, #715e4a);

    font-size: 10px;

    line-height: 1.7;
}

body.contact-page .contact-final-button {
    min-width: 165px;
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    border-radius: 13px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--ag-saffron, #df7b14),
            var(--ag-saffron-dark, #b55207)
        );

    box-shadow:
        0 11px 27px
        rgba(177, 78, 5, 0.18);

    font-size: 9px;
    font-weight: 850;

    transition:
        transform var(--ag-transition, 180ms ease),
        box-shadow var(--ag-transition, 180ms ease);
}

body.contact-page .contact-final-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 33px
        rgba(177, 78, 5, 0.24);
}


/* ============================================================
   LARGE TABLET / SMALL LAPTOP
============================================================ */

@media (max-width: 1180px) {

    body.contact-page .contact-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            370px;

        gap: 45px;
    }

    body.contact-page .contact-hero-symbol-orbit {
        width: 360px;
        height: 360px;
    }

    body.contact-page .contact-orbit-one {
        width: 350px;
        height: 350px;
    }

    body.contact-page .contact-orbit-two {
        width: 282px;
        height: 282px;
    }

    body.contact-page .contact-hero-symbol {
        width: 205px;
        height: 205px;
    }

    body.contact-page .contact-layout {
        grid-template-columns:
            300px
            minmax(0, 1fr);
    }

    body.contact-page .contact-support-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* ============================================================
   TABLET / SMALL LAPTOP
============================================================ */

@media (max-width: 1024px) {

    body.contact-page .contact-hero {
        min-height: auto;

        padding:
            calc(
                var(--ag-header-height, 78px)
                +
                40px
            )
            0
            72px;
    }

    body.contact-page .contact-hero-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    body.contact-page .contact-hero-symbol-wrap {
        justify-content: flex-start;
    }

    body.contact-page .contact-layout {
        grid-template-columns: 1fr;
    }

    body.contact-page .contact-information-column {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    body.contact-page .contact-information-card {
        grid-column: 1 / -1;
    }

    body.contact-page .contact-faq-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    body.contact-page .contact-faq-heading {
        position: static;
    }

    body.contact-page .contact-section-heading {
        grid-template-columns: 1fr;

        gap: 14px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 768px) {

    body.contact-page .contact-hero-symbol-orbit {
        width: 330px;
        height: 330px;
    }

    body.contact-page .contact-orbit-one {
        width: 320px;
        height: 320px;
    }

    body.contact-page .contact-orbit-two {
        width: 255px;
        height: 255px;
    }

    body.contact-page .contact-hero-symbol {
        width: 185px;
        height: 185px;
    }

    body.contact-page .contact-hero-symbol > span {
        font-size: 58px;
    }

    body.contact-page .contact-information-column {
        grid-template-columns: 1fr;
    }

    body.contact-page .contact-information-card {
        grid-column: auto;
    }

    body.contact-page .contact-form-grid {
        grid-template-columns: 1fr;
    }

    body.contact-page .contact-final-card {
        grid-template-columns:
            80px
            minmax(0, 1fr);

        gap: 24px;
    }

    body.contact-page .contact-final-button {
        grid-column: 1 / -1;

        width: 100%;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {

    body.contact-page .contact-hero {
        padding:
            calc(
                var(--ag-header-height, 78px)
                +
                34px
            )
            0
            58px;
    }

    body.contact-page .contact-back-row {
        margin-bottom: 27px;
    }

    body.contact-page .contact-hero-copy h1 {
        font-size:
            clamp(
                41px,
                12vw,
                57px
            );
    }

    body.contact-page .contact-hero-copy > p {
        font-size: 13px;
    }

    body.contact-page .contact-hero-meta {
        width: 100%;

        justify-content: space-between;

        gap: 9px;

        padding:
            13px
            12px;
    }

    body.contact-page .contact-hero-meta > div {
        min-width: 0;
    }

    body.contact-page .contact-hero-symbol-wrap {
        justify-content: center;
    }

    body.contact-page .contact-hero-symbol-orbit {
        width: 290px;
        height: 290px;
    }

    body.contact-page .contact-orbit-one {
        width: 282px;
        height: 282px;
    }

    body.contact-page .contact-orbit-two {
        width: 225px;
        height: 225px;
    }

    body.contact-page .contact-hero-symbol {
        width: 165px;
        height: 165px;
    }

    body.contact-page .contact-hero-symbol > span {
        font-size: 50px;
    }

    body.contact-page .contact-experience-section,
    body.contact-page .contact-support-section,
    body.contact-page .contact-faq-section {
        padding:
            80px
            0;
    }

    body.contact-page .contact-layout {
        gap: 20px;
    }

    body.contact-page .contact-information-card,
    body.contact-page .contact-form-card,
    body.contact-page .contact-success-card,
    body.contact-page .contact-loading-card {
        padding:
            28px
            21px;

        border-radius: 22px;
    }

    body.contact-page .contact-form-heading h2 {
        font-size:
            clamp(
                27px,
                8vw,
                36px
            );
    }

    body.contact-page .contact-form-number {
        font-size: 27px;
    }

    body.contact-page .contact-form-action-row {
        flex-direction: column;

        align-items: stretch;
    }

    body.contact-page .contact-submit-button {
        width: 100%;
    }

    body.contact-page .contact-submit-note {
        text-align: center;
    }

    body.contact-page .contact-success-actions {
        flex-direction: column;
    }

    body.contact-page .contact-new-message-button,
    body.contact-page .contact-home-button {
        width: 100%;
    }

    body.contact-page .contact-section-heading h2 {
        font-size:
            clamp(
                31px,
                9vw,
                42px
            );
    }

    body.contact-page .contact-support-grid {
        grid-template-columns: 1fr;
    }

    body.contact-page .contact-support-grid article {
        min-height: auto;
    }

    body.contact-page .contact-faq-item summary {
        min-height: 69px;

        font-size: 10px;
    }

    body.contact-page .contact-faq-item p {
        padding-right: 15px;

        font-size: 9px;
    }

    body.contact-page .contact-final-section {
        padding:
            5px
            0
            85px;
    }

    body.contact-page .contact-final-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding:
            31px
            23px;

        text-align: center;
    }

    body.contact-page .contact-final-symbol {
        margin-inline: auto;
    }

    body.contact-page .contact-final-card p {
        margin-inline: auto;
    }

    body.contact-page .contact-final-button {
        grid-column: auto;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {

    body.contact-page .contact-kicker {
        font-size: 8px;
    }

    body.contact-page .contact-hero-meta {
        display: grid;

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        text-align: center;
    }

    body.contact-page .contact-meta-divider {
        display: none;
    }

    body.contact-page .contact-hero-meta > div {
        align-items: center;
    }

    body.contact-page .contact-hero-symbol-orbit {
        width: 260px;
        height: 260px;
    }

    body.contact-page .contact-orbit-one {
        width: 254px;
        height: 254px;
    }

    body.contact-page .contact-orbit-two {
        width: 201px;
        height: 201px;
    }

    body.contact-page .contact-hero-symbol {
        width: 148px;
        height: 148px;
    }

    body.contact-page .contact-hero-symbol > span {
        font-size: 44px;
    }

    body.contact-page .contact-topic-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    body.contact-page .contact-topic-icon {
        margin-inline: auto;
    }

    body.contact-page .contact-company-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    body.contact-page .contact-company-symbol {
        margin-inline: auto;
    }

    body.contact-page .contact-form-heading {
        flex-direction: column;
    }

    body.contact-page .contact-form-number {
        order: -1;
    }

    body.contact-page .contact-field-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 4px;
    }

    body.contact-page .contact-character-count {
        margin-left: 0;
    }

    body.contact-page .contact-safety-note {
        grid-template-columns: 1fr;

        text-align: center;
    }

    body.contact-page .contact-safety-note > span {
        margin-inline: auto;
    }

    body.contact-page .contact-reference-row {
        width: 100%;

        justify-content: center;

        border-radius: 14px;
    }

}


/* ============================================================
   TOUCH
============================================================ */

@media (hover: none) and (pointer: coarse) {

    body.contact-page .contact-back-link:hover,
    body.contact-page .contact-topic-card:hover,
    body.contact-page .contact-submit-button:hover,
    body.contact-page .contact-new-message-button:hover,
    body.contact-page .contact-home-button:hover,
    body.contact-page .contact-support-grid article:hover,
    body.contact-page .contact-final-button:hover {
        transform: none;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

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

    body.contact-page .contact-orbit-two,
    body.contact-page .contact-loading-ring,
    body.contact-page .contact-loading-dots span,
    body.contact-page
    .contact-submit-button.is-loading
    span:last-child {
        animation: none !important;
    }

    body.contact-page * {
        scroll-behavior: auto !important;
    }

}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes contactOrbitRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes contactLoadingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes contactLoadingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);

        opacity: 0.45;
    }

    30% {
        transform: translateY(-5px);

        opacity: 1;
    }

}


@keyframes contactButtonPulse {

    0%,
    100% {
        transform: translateX(0);

        opacity: 0.7;
    }

    50% {
        transform: translateX(3px);

        opacity: 1;
    }

}