/* =========================================
   ROOT
========================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --card: #ffffff;

    --text: #181818;
    --text-dark: #101010;

    --muted: #6f6f6f;
    --muted-light: #909090;

    --line: #e5e5e5;
    --line-soft: #eeeeee;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff1e8;

    --container: 1240px;

    --transition: all 0.3s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "DM Sans", sans-serif;

    color: var(--text);
    background: var(--bg);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.logo span {
    color: var(--orange);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;

    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--text-dark);

    color: #fff !important;

    padding: 12px 20px;

    border-radius: 5px;

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--orange);
}

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--text);

    margin: 5px auto;
}

.mobile-menu {
    display: none;
}


/* =========================================
   HERO
========================================= */

.contact-hero {
    padding: 125px 0 115px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(249, 115, 22, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 60%,
            #fff8f3 100%
        );

    border-bottom: 1px solid var(--line);
}

.hero-content {
    max-width: 950px;
}

.eyebrow {
    display: inline-block;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.contact-hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(58px, 8vw, 105px);

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 800;

    margin-bottom: 35px;
}

.contact-hero h1 span {
    color: var(--orange);
}

.hero-content p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 110px 0;

    background: #fff;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 100px;

    align-items: start;
}

.section-label {
    display: block;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.contact-info h2 span {
    color: var(--orange);
}

.intro-text {
    max-width: 680px;

    color: var(--muted);

    font-size: 16px;

    margin-bottom: 40px;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-cards {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px;

    border: 1px solid var(--line);

    background: #fff;

    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(249, 115, 22, 0.4);

    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 18px;

    font-weight: 700;
}

.contact-card span {
    display: block;

    color: var(--muted-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}

.contact-card a {
    font-size: 15px;

    font-weight: 600;

    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--orange);
}


/* =========================================
   BUSINESS CARD
========================================= */

.business-card {
    padding: 40px;

    background: var(--text-dark);

    color: #fff;

    position: relative;

    overflow: hidden;
}

.business-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.1);

    right: -120px;
    top: -120px;
}

.card-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}

.card-label {
    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.card-number {
    color: #444;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;
}

.business-card h3 {
    position: relative;

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    line-height: 1.1;

    margin-bottom: 5px;
}

.business-card > p {
    position: relative;

    color: #999;

    font-size: 13px;

    margin-bottom: 50px;
}

.address-block {
    position: relative;
}

.address-block > span {
    display: block;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.address-block address {
    color: #d0d0d0;

    font-style: normal;

    font-size: 14px;

    line-height: 1.8;
}

.business-divider {
    height: 1px;

    background: #2c2c2c;

    margin: 35px 0;
}

.business-detail {
    position: relative;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;
}

.business-detail span {
    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.business-detail strong {
    color: #ddd;

    font-size: 12px;

    text-align: right;
}


/* =========================================
   SUPPORT SECTION
========================================= */

.support-section {
    padding: 110px 0;

    background: var(--bg-soft);
}

.support-heading {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}

.support-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.support-heading h2 span {
    color: var(--orange);
}

.support-heading > p {
    color: var(--muted);

    font-size: 15px;
}


/* =========================================
   SUPPORT GRID
========================================= */

.support-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.support-item {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);

    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-3px);

    border-color: rgba(249, 115, 22, 0.4);
}

.support-item > span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;
}

.support-item strong {
    display: block;

    font-size: 15px;

    margin-bottom: 5px;
}

.support-item p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   HOURS
========================================= */

.hours-section {
    padding: 100px 0;

    background: #fff;
}

.hours-card {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    padding: 65px;

    background: var(--orange-light);

    border-left: 4px solid var(--orange);
}

.hours-left h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.hours-left h2 span {
    color: var(--orange);
}

.hours-left p {
    max-width: 480px;

    color: var(--muted);

    font-size: 14px;
}

.hours-right {
    align-self: center;
}

.hours-row {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-row:first-child {
    padding-top: 0;
}

.hours-row .day {
    font-weight: 600;

    font-size: 14px;
}

.hours-row .time {
    font-size: 14px;

    font-weight: 700;

    text-align: right;
}

.hours-row.closed .time {
    color: var(--muted);
}

.hours-note {
    color: var(--muted);

    font-size: 12px;

    margin-top: 20px;
}


/* =========================================
   QUICK CONTACT
========================================= */

.quick-contact {
    padding: 80px 0;

    background: var(--bg-soft);
}

.quick-contact-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 70px;

    background: var(--text-dark);

    color: #fff;

    position: relative;

    overflow: hidden;
}

.quick-contact-inner::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.08);

    right: -150px;
    bottom: -220px;
}

.quick-contact-inner h2 {
    position: relative;
    z-index: 1;

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -2.5px;
}

.quick-contact-inner h2 span {
    color: var(--orange);
}

.quick-actions {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 12px;
}

.quick-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.quick-button.primary {
    background: var(--orange);

    color: #fff;
}

.quick-button.primary:hover {
    background: #fff;

    color: var(--text-dark);
}

.quick-button.secondary {
    border: 1px solid #444;

    color: #fff;
}

.quick-button.secondary:hover {
    background: #fff;

    color: var(--text-dark);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 75px 0 25px;

    background: #111;

    color: #fff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 55px;

    border-bottom: 1px solid #292929;
}

.footer-logo {
    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 800;
}

.footer-logo span {
    color: var(--orange);
}

.footer-brand p {
    max-width: 390px;

    margin-top: 18px;

    color: #8f8f8f;

    font-size: 13px;

    line-height: 1.8;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column > span {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #a5a5a5;

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 22px;

    color: #777;

    font-size: 11px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 20px;
    }

    .contact-grid {
        gap: 60px;
    }

    .support-heading {
        gap: 50px;
    }

    .hours-card {
        gap: 50px;
    }

}


@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .nav-wrapper {
        height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;

        flex-direction: column;

        max-height: 0;

        overflow: hidden;

        background: #fff;

        border-top: 1px solid transparent;

        transition:
            max-height 0.35s ease,
            border-color 0.35s ease;
    }

    .mobile-menu.open {
        max-height: 400px;

        border-color: var(--line);
    }

    .mobile-menu a {
        padding: 15px 20px;

        border-bottom: 1px solid var(--line-soft);

        font-size: 14px;

        font-weight: 600;
    }

    .mobile-menu a:hover {
        color: var(--orange);
    }

    .mobile-menu .mobile-cta {
        margin: 15px;

        padding: 13px;

        background: var(--text-dark);

        color: #fff;

        text-align: center;

        border: 0;
    }


    /* Hero */

    .contact-hero {
        padding: 90px 0 80px;
    }

    .contact-hero h1 {
        letter-spacing: -3px;
    }


    /* Contact */

    .contact-section {
        padding: 75px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    /* Support */

    .support-section {
        padding: 75px 0;
    }

    .support-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 40px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }


    /* Hours */

    .hours-section {
        padding: 60px 0;
    }

    .hours-card {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 45px 30px;
    }


    /* Quick Contact */

    .quick-contact {
        padding: 50px 0;
    }

    .quick-contact-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 55px 30px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 500px) {

    .contact-hero h1 {
        font-size: 52px;

        letter-spacing: -2.5px;
    }

    .contact-info h2 {
        letter-spacing: -2px;
    }

    .business-card {
        padding: 30px 25px;
    }

    .support-item {
        padding: 24px;
    }

    .hours-row {
        flex-direction: column;

        gap: 3px;
    }

    .hours-row .time {
        text-align: left;
    }

    .quick-actions {
        width: 100%;

        flex-direction: column;
    }

    .quick-button {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}



/* =========================================
   SUPPORT FORM
========================================= */

.support-form-wrapper {
    background: #ffffff;

    border: 1px solid var(--line);

    padding: 45px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

.support-form {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full-width,
.form-consent.full-width,
.form-submit.full-width,
.form-message.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.2px;
}

.form-group label span {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dedede;

    background: #fff;

    color: var(--text);

    padding: 14px 16px;

    border-radius: 3px;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    outline: none;

    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;

    appearance: auto;
}

.form-group textarea {
    resize: vertical;

    min-height: 145px;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #c7c7c7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

.error-message {
    display: none;

    color: #dc2626;

    font-size: 11px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc2626;
}

.form-group.has-error .error-message {
    display: block;
}


/* =========================================
   CONSENT
========================================= */

.form-consent {
    margin-top: 2px;
}

.checkbox-wrapper {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    cursor: pointer;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}

.checkbox-wrapper input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.custom-checkbox {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    margin-top: 2px;

    border: 1px solid #ccc;

    background: #fff;

    border-radius: 3px;

    position: relative;

    transition: var(--transition);
}

.checkbox-wrapper input:checked + .custom-checkbox {
    background: var(--orange);

    border-color: var(--orange);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
    content: "✓";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -55%);

    color: #fff;

    font-size: 12px;

    font-weight: 800;
}

.checkbox-wrapper input:focus-visible + .custom-checkbox {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}


/* =========================================
   SUBMIT
========================================= */

.form-submit {
    display: flex;

    align-items: center;

    gap: 25px;

    padding-top: 5px;
}

.submit-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 0;

    background: var(--orange);

    color: #fff;

    padding: 15px 25px;

    min-width: 170px;

    border-radius: 4px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.submit-button:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}

.submit-button span {
    font-size: 17px;
}

.form-note {
    color: var(--muted-light);

    font-size: 11px;

    line-height: 1.5;

    max-width: 350px;
}


/* =========================================
   FORM MESSAGES
========================================= */

.form-message {
    display: none;

    padding: 18px 20px;

    border-left: 3px solid var(--orange);

    background: var(--orange-light);

    flex-direction: column;

    gap: 3px;
}

.form-message strong {
    font-size: 14px;
}

.form-message span {
    color: var(--muted);

    font-size: 13px;
}

.form-error {
    border-left-color: #dc2626;

    background: #fff5f5;
}

.form-error strong {
    color: #b91c1c;
}


/* =========================================
   RESPONSIVE FORM
========================================= */

@media (max-width: 768px) {

    .support-form-wrapper {
        padding: 30px 22px;
    }

    .support-form {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .form-group.full-width,
    .form-consent.full-width,
    .form-submit.full-width,
    .form-message.full-width {
        grid-column: auto;
    }

    .form-submit {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .submit-button {
        width: 100%;
    }

}