:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "Space Grotesk", sans-serif;
    --font-body-alt: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-dropdown:
        0 8px 40px rgba(41, 42, 46, 0.13), 0 2px 8px rgba(41, 42, 46, 0.07);
    --radius-dropdown: 14px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-w: 300px;
    --card-gap: 16px;
    --card-radius: 22px;
    --card-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    --foot-border: #e8e9eb;
    --foot-muted: #8a8d96;
    --foot-link: #3a3b40;
    --foot-link-hover: var(--brand-green);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(../images/support.jpg);
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.04);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 21, 23, 0.82) 0%,
        rgba(20, 21, 23, 0.55) 45%,
        rgba(20, 21, 23, 0.15) 100%
    );
    z-index: 1;
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 16, 17, 0.5) 0%,
        transparent 40%
    );
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-label {
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.6s ease 0.1s,
        transform 0.6s ease 0.1s;
}

.hero-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 600px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease 0.22s,
        transform 0.7s ease 0.22s;
}

.hero-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-heading .hero-hl {
    color: var(--brand-green);
}

.hero-body {
    font-family: var(--font-body-alt);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 460px;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.7s ease 0.38s,
        transform 0.7s ease 0.38s;
}

.hero-body.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 0 28px;
        padding-top: calc(var(--nav-height) + 60px);
        padding-bottom: 56px;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(20, 21, 23, 0.45) 0%,
            rgba(20, 21, 23, 0.75) 100%
        );
    }

    .hero-heading {
        max-width: 100%;
    }
    .hero-body {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 0 20px;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 44px;
    }
}

.cnt-form-section {
    width: 100%;
    min-height: 80vh;
    background: #fff;
    display: flex;
    align-items: flex-start;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.cnt-form-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cnt-form-left {
    opacity: 0;
    transform: translateX(-48px);
    transition:
        opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.cnt-form-left.cnt-form-visible {
    opacity: 1;
    transform: translateX(0);
}

.cnt-form-right {
    opacity: 0;
    transform: translateX(48px);
    transition:
        opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
        transform 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.cnt-form-right.cnt-form-visible {
    opacity: 1;
    transform: translateX(0);
}

.cnt-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-green);
    background: var(--brand-green-light);
    border: 1px solid var(--brand-green-mid);
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.cnt-form-eyebrow i {
    font-size: 0.78rem;
}

.cnt-form-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cnt-form-heading span {
    color: var(--brand-green);
    position: relative;
}

.cnt-form-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: var(--brand-green-mid);
    border-radius: 2px;
    z-index: -1;
}

.cnt-form-desc {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a5d66;
    margin-bottom: 36px;
    max-width: 420px;
}

.cnt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 20px;
    max-width: 420px;
}

.cnt-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fafbfc;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 14px 20px;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.cnt-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 42, 46, 0.06);
    border-color: var(--brand-green-mid);
    background: #ffffff;
}

.cnt-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brand-green);
    flex-shrink: 0;
}

.cnt-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cnt-contact-label {
    font-family: var(--font-body-alt);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--foot-muted);
}

.cnt-contact-value {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition: color var(--transition);
    word-break: break-all;
}

.cnt-contact-value:hover {
    color: var(--brand-green);
}

.cnt-contact-value i {
    font-size: 0.85rem;
    margin-left: 6px;
    color: var(--brand-green);
    opacity: 0;
    transition:
        opacity var(--transition),
        transform var(--transition);
    display: inline-block;
}

.cnt-contact-value:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.cnt-contact-mail,
.cnt-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cnt-form-card {
    background: #fff;
    border: 1px solid #ecedf0;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow:
        0 4px 32px rgba(41, 42, 46, 0.07),
        0 1px 4px rgba(41, 42, 46, 0.04);
    position: relative;
}

.cnt-form-card-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--foot-muted);
    margin-bottom: 22px;
}

.cnt-form-group {
    margin-bottom: 16px;
}

.cnt-form-group label {
    display: block;
    font-family: var(--font-body-alt);
    font-size: 0.77rem;
    font-weight: 500;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.cnt-form-group label .cnt-form-optional {
    font-weight: 400;
    color: var(--foot-muted);
    font-size: 0.72rem;
    margin-left: 4px;
}

.cnt-form-input,
.cnt-form-select,
.cnt-form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.83rem;
    color: var(--brand-dark);
    background: #f8f9fa;
    border: 1px solid #e4e5e8;
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    appearance: none;
}

.cnt-form-input::placeholder,
.cnt-form-textarea::placeholder {
    color: #b0b3bc;
}

.cnt-form-input:focus,
.cnt-form-select:focus,
.cnt-form-textarea:focus {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(66, 184, 14, 0.1);
}

.cnt-form-input.cnt-form-error,
.cnt-form-select.cnt-form-error,
.cnt-form-textarea.cnt-form-error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.09);
}

.cnt-form-error-msg {
    font-family: var(--font-body-alt);
    font-size: 0.7rem;
    color: #e53935;
    margin-top: 4px;
    display: none;
}

.cnt-form-error-msg.cnt-form-show {
    display: block;
}

.cnt-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%238a8d96%27 d=%27M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.cnt-form-textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.55;
}

.cnt-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cnt-form-phone-wrap {
    display: flex;
    gap: 0;
    border: 1px solid #e4e5e8;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.cnt-form-phone-wrap:focus-within {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(66, 184, 14, 0.1);
}

.cnt-form-phone-wrap.cnt-form-error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.09);
}

.cnt-form-phone-code {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-dark);
    background: transparent;
    border: none;
    border-right: 1px solid #e4e5e8;
    padding: 10px 12px;
    width: 82px;
    flex-shrink: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%238a8d96%27 d=%27M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
}

.cnt-form-phone-number {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.83rem;
    color: var(--brand-dark);
    background: transparent;
    border: none;
    padding: 10px 14px;
    outline: none;
}

.cnt-form-phone-number::placeholder {
    color: #b0b3bc;
}

.cnt-form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.cnt-form-checkbox-wrap {
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

.cnt-form-checkbox-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cnt-form-checkbox-custom {
    width: 17px;
    height: 17px;
    border: 1.5px solid #d0d1d6;
    border-radius: 5px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--transition),
        background var(--transition);
    cursor: pointer;
}

.cnt-form-checkbox-wrap
    input[type="checkbox"]:checked
    + .cnt-form-checkbox-custom {
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.cnt-form-checkbox-custom i {
    color: #fff;
    font-size: 0.65rem;
    display: none;
}

.cnt-form-checkbox-wrap
    input[type="checkbox"]:checked
    + .cnt-form-checkbox-custom
    i {
    display: block;
}

.cnt-form-checkbox-label {
    font-family: var(--font-body-alt);
    font-size: 0.76rem;
    color: #5a5d66;
    line-height: 1.5;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.cnt-form-checkbox-label a {
    color: var(--brand-green);
    text-decoration: none;
}

.cnt-form-checkbox-label a:hover {
    text-decoration: underline;
}

.cnt-form-submit {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand-green);
    border: none;
    border-radius: 10px;
    padding: 13px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.cnt-form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.cnt-form-submit:hover {
    background: #389a0b;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(66, 184, 14, 0.28);
}

.cnt-form-submit:active {
    transform: translateY(0);
}

.cnt-form-submit.cnt-form-loading {
    pointer-events: none;
}

.cnt-form-submit .cnt-form-btn-text {
    transition: opacity 0.2s;
}
.cnt-form-submit.cnt-form-loading .cnt-form-btn-text {
    opacity: 0;
}

.cnt-form-btn-text i {
    font-size: 0.82rem;
}

.cnt-form-spinner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: cnt-spin 0.7s linear infinite;
}

.cnt-form-submit.cnt-form-loading .cnt-form-spinner {
    display: block;
}

@keyframes cnt-spin {
    to {
        transform: rotate(360deg);
    }
}

.cnt-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 14px;
}

.cnt-form-success.cnt-form-show {
    display: flex;
}

.cnt-form-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-green-light);
    border: 2px solid var(--brand-green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 1.6rem;
    animation: cnt-pop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cnt-pop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cnt-form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.cnt-form-success p {
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    color: #5a5d66;
    line-height: 1.6;
    max-width: 300px;
}

@media (max-width: 1024px) {
    .cnt-form-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 600px;
        align-items: start;
    }

    .cnt-form-section {
        min-height: unset;
        padding: 64px 0;
    }

    .cnt-form-left {
        text-align: center;
    }

    .cnt-form-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cnt-contact-info {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
    }

    .cnt-contact-item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cnt-form-inner {
        padding: 0 18px;
    }
    .cnt-form-card {
        padding: 24px 18px;
    }
    .cnt-form-grid-2 {
        grid-template-columns: 1fr;
    }
    .cnt-contact-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        align-items: center;
        gap: 12px;
    }
    .cnt-contact-details {
        align-items: center;
    }
    .cnt-contact-value {
        font-size: 0.9rem;
    }
}

