/* =========================================================
   DOTS MEDIA
   CONTACT US PAGE
========================================================= */

.contact-page {
    margin: 0;
    padding: 0;
}

.contact-page-content {
    width: 100%;
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-top:110px;
}


/* =========================================================
   COMMON
========================================================= */

.contact-eyebrow {
    display: block;
    margin-bottom: 14px;

    color: #ff6b00;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-page-content h1,
.contact-page-content h2,
.contact-page-content h3,
.contact-page-content p {
    margin-top: 0;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.contact-hero {
    padding: 30px 0 25px;
}

.contact-hero-image {
    width: 100%;

    aspect-ratio: 2.75 / 1;

    border: 1px solid #ff6b00;
    border-radius: 6px;

    overflow: hidden;

    background: #0a0a0a;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    padding: 0 0 90px;
}

.contact-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   FORM CONTENT
========================================================= */

.contact-form-wrap {
    min-width: 0;
}

.contact-form-wrap h1 {
    margin-bottom: 8px;

    font-size: 27px;
    line-height: 1.05;

    letter-spacing: -1px;
}

.contact-intro {
    max-width: 650px;

    margin-bottom: 28px;

    color: #707070;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 12px;
}

.contact-field {
    min-width: 0;
    margin-bottom: 12px;
}

.contact-field label {
    display: block;

    margin-bottom: 7px;

    color: #8b8b8b;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .7px;
    text-transform: uppercase;
}

.contact-field label span {
    color: #ff6b00;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #191919;
    border-radius: 5px;

    background: #0a0a0a;
    color: #ffffff;

    padding: 10px 12px;

    outline: none;

    font-family: inherit;
    font-size: 9px;

    transition: border-color .25s ease,
                background .25s ease;
}

.contact-field input,
.contact-field select {
    height: 34px;
}

.contact-field textarea {
    min-height: 80px;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #4d4d4d;
}

.contact-field select {
    color: #777777;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);

    background-position:
        calc(100% - 14px) 14px,
        calc(100% - 10px) 14px;

    background-size: 4px 4px, 4px 4px;

    background-repeat: no-repeat;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #ff6b00;
    background: #0d0d0d;
}


/* =========================================================
   CHECKBOXES
========================================================= */

.contact-checkboxes {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.contact-check {
    display: inline-flex !important;

    align-items: center;

    gap: 6px;

    margin: 0 !important;

    padding: 7px 10px;

    border: 1px solid #1b1b1b;

    border-radius: 4px;

    background: #0a0a0a;

    color: #777 !important;

    font-size: 7px !important;

    letter-spacing: 0 !important;

    text-transform: none !important;

    cursor: pointer;
}

.contact-check input {
    width: auto;

    accent-color: #ff6b00;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    width: 100%;

    height: 36px;

    margin-top: 3px;

    border: 0;

    border-radius: 25px;

    background: #ff6b00;

    color: #ffffff;

    font-family: inherit;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-submit span {
    margin-left: 8px;

    font-size: 12px;
}

.contact-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255, 107, 0, .18);
}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-info-card {
    padding: 20px;

    border: 1px solid #171717;

    border-radius: 6px;

    background: #0a0a0a;
}

.contact-info-card h2 {
    margin-bottom: 25px;

    font-size: 18px;
    line-height: 1.15;

    letter-spacing: -.5px;
}

.contact-info-item {
    margin-bottom: 18px;
}

.contact-info-label {
    display: block;

    margin-bottom: 6px;

    color: #555555;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;

    color: #bcbcbc;

    font-size: 9px;
    line-height: 1.5;

    text-decoration: none;
}

.contact-info-item a:hover {
    color: #ff6b00;
}

.contact-info-divider {
    height: 1px;

    margin: 20px 0;

    background: #171717;
}

.contact-info-note {
    margin-bottom: 15px;

    color: #666666;

    font-size: 8px;
    line-height: 1.7;
}

.contact-email-link {
    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #ff6b00;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none;
}

.contact-email-link span {
    font-size: 12px;
}


/* =========================================================
   GLOBAL PRESENCE
========================================================= */

.contact-global {
    padding: 65px 0 85px;

    border-top: 1px solid #121212;
}

.contact-global-heading {
    max-width: 650px;

    margin-bottom: 28px;
}

.contact-global-heading h2 {
    margin-bottom: 13px;

    font-size: clamp(30px, 3vw, 43px);

    line-height: 1;

    letter-spacing: -1.5px;
}

.contact-global-heading h2 span {
    color: #ff6b00;
}

.contact-global-heading p {
    max-width: 600px;

    color: #666666;

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   LOCATION CARDS
========================================================= */

.contact-location-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 28px;
}

.contact-location-card {
    position: relative;

    min-height: 105px;

    padding: 18px;

    border: 1px solid #181818;

    border-radius: 5px;

    background: #080808;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.contact-location-card:hover {
    transform: translateY(-3px);

    border-color: #333333;
}

.contact-location-number {
    display: block;

    margin-bottom: 15px;

    color: #ff6b00;

    font-size: 10px;
    font-weight: 700;
}

.contact-location-card h3 {
    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;
}

.contact-location-card p {
    max-width: 250px;

    margin-bottom: 15px;

    color: #5f5f5f;

    font-size: 7px;

    line-height: 1.7;
}

.contact-location-link {
    color: #ff6b00;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: .4px;
}


/* =========================================================
   MAP
========================================================= */

.contact-map {
    width: 100%;

    height: 215px;

    border: 1px solid #1a1a1a;

    border-radius: 6px;

    overflow: hidden;

    background: #090909;
}

.contact-map img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: .85;
}

.contact-map-button {
    display: flex;

    justify-content: center;

    margin-top: 15px;
}

.contact-outline-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 14px;

    border: 1px solid #ff6b00;

    border-radius: 20px;

    color: #ff6b00;

    font-size: 6px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.contact-outline-btn span {
    font-size: 10px;
}

.contact-outline-btn:hover {
    background: #ff6b00;

    color: #ffffff;
}


/* =========================================================
   GLOBAL META
========================================================= */

.contact-global-meta {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    padding-top: 18px;

    margin-top: 15px;

    border-top: 1px solid #151515;
}

.contact-global-meta div {
    color: #777777;

    font-size: 7px;
}

.contact-global-meta span {
    display: block;

    margin-bottom: 5px;

    color: #444444;

    font-size: 5px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 85px 0 100px;

    border-top: 1px solid #141414;
}

.contact-final-inner {
    max-width: 650px;

    margin: 0 auto;

    text-align: center;
}

.contact-final-inner h2 {
    margin-bottom: 15px;

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1;

    letter-spacing: -2px;
}

.contact-final-inner h2 span {
    color: #ff6b00;
}

.contact-final-inner p {
    max-width: 480px;

    margin: 0 auto 25px;

    color: #666666;

    font-size: 9px;

    line-height: 1.8;
}

.contact-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 25px;

    background: #ff6b00;

    color: #ffffff;

    font-size: 7px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.contact-btn span {
    font-size: 11px;
}

.contact-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        max-width: 100%;
    }

    .contact-location-grid {
        gap: 8px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-container {
        width: min(100% - 30px, 600px);
    }


    /* HERO */

    .contact-hero {
        padding: 20px 0 20px;
        padding-top:50px;
    }

    .contact-hero-image {
        aspect-ratio: 1.5 / 1;
    }


    /* FORM */

    .contact-form-section {
        padding-bottom: 65px;
    }

    .contact-grid {
        gap: 35px;
    }

    .contact-form-wrap h1 {
        font-size: 25px;
    }

    .contact-intro {
        font-size: 9px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }


    /* INFO */

    .contact-info-card {
        padding: 18px;
    }


    /* GLOBAL */

    .contact-global {
        padding: 55px 0 65px;
    }

    .contact-global-heading h2 {
        font-size: 34px;
    }

    .contact-location-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .contact-location-card {
        min-height: auto;
    }

    .contact-map {
        height: 175px;
    }

    .contact-global-meta {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    /* CTA */

    .contact-final-cta {
        padding: 65px 0 75px;
    }

    .contact-final-inner h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

}