/* =========================================================
   MOTO747 CONTACT & SERVICE PAGE
   ========================================================= */

.contact-hero,
.contact-info-section,
.contact-main-section,
.contact-map-section {
    position: relative;
}

.contact-hero *,
.contact-info-section *,
.contact-main-section *,
.contact-map-section * {
    box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    width: 100%;
    overflow: hidden;
    background: #050505;
}

.contact-hero .banner-slider-m {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.contact-hero .banner-slider-m::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.30) 55%,
            rgba(0, 0, 0, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72) 0%,
            transparent 55%
        );
}

.contact-hero .banner-slider-m::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.07;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.22) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.22) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.contact-hero .banner-slider-m img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(0.82)
        contrast(1.10)
        saturate(1.05);
}


/* =========================================================
   CONTACT INFO CARDS
   ========================================================= */

.contact-info-section {
    z-index: 5;
    padding: 0 0 105px;
    background: #ffffff;
}

.contact-info-section .container {
    position: relative;
    margin-top: -70px;
}

.contact-info-section .row > div {
    display: flex;
}

.contact-info-card {
    position: relative;
    width: 100%;
    min-height: 285px;
    padding: 34px 28px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.13);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #e10600;
    transition: width 0.4s ease;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(225, 6, 0, 0.045);
    transition: 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-9px);
    border-color: rgba(225, 6, 0, 0.35);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.17);
}

.contact-info-card:hover::before {
    width: 100%;
}

.contact-info-card:hover::after {
    width: 230px;
    height: 230px;
    background: rgba(225, 6, 0, 0.075);
}

.contact-info-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e10600;
    font-size: 23px;
    border: 1px solid rgba(225, 6, 0, 0.28);
    background: rgba(225, 6, 0, 0.07);
    transition: 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    color: #ffffff;
    background: #e10600;
    border-color: #e10600;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(225, 6, 0, 0.22);
}

.contact-info-icon.whatsapp-icon {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.28);
    background: rgba(37, 211, 102, 0.07);
}

.contact-info-card:hover .contact-info-icon.whatsapp-icon {
    color: #ffffff;
    border-color: #25d366;
    background: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.20);
}

.contact-info-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: #171717;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: -0.45px;
    text-transform: uppercase;
}

.contact-info-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: #727272;
    font-size: 13px;
    line-height: 1.75;
}

.contact-info-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e10600;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-info-card > a:hover {
    color: #111111;
    transform: translateX(4px);
}


/* =========================================================
   MAIN CONTACT SECTION
   ========================================================= */

.contact-main-section {
    padding: 115px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            145deg,
            #f2f2f2 0%,
            #ffffff 52%,
            #eeeeee 100%
        );
}

.contact-main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.30) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.30) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.contact-main-section::after {
    content: "";
    position: absolute;
    top: -260px;
    left: -220px;
    z-index: 0;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(225, 6, 0, 0.07);
    filter: blur(145px);
}

.contact-main-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT PANEL
   ========================================================= */

.contact-left-panel {
    position: relative;
    height: 100%;
    padding: 48px 42px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #080809 0%,
            #111214 55%,
            #070707 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.22);
}

.contact-left-panel::before {
    content: "MOTO747";
    position: absolute;
    right: -35px;
    bottom: -18px;
    color: transparent;
    font-size: 105px;
    line-height: 0.8;
    font-weight: 950;
    letter-spacing: -8px;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
}

.contact-left-panel::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(225, 6, 0, 0.15);
    filter: blur(100px);
}

.contact-small-title {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #e10600;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-small-title::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #e10600;
    box-shadow: 0 0 14px rgba(225, 6, 0, 0.60);
}

.contact-left-panel > h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2.5px;
    text-transform: uppercase;
}

.contact-title-line {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 3px;
    margin: 28px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
}

.contact-title-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 56%;
    background: #e10600;
}

.contact-left-text {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    line-height: 1.82;
}


/* =========================================================
   FEATURES
   ========================================================= */

.contact-feature-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 31px;
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-feature-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e10600;
    font-size: 17px;
    border: 1px solid rgba(225, 6, 0, 0.30);
    background: rgba(225, 6, 0, 0.07);
}

.contact-feature-item h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
}

.contact-feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   WORKING HOURS
   ========================================================= */

.contact-working-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
}

.contact-working-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    background: #e10600;
}

.contact-working-box span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-working-box strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
}

.contact-working-box p {
    margin: 0;
    color: #e10600;
    font-size: 12px;
    font-weight: 750;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.contact-form-wrapper {
    position: relative;
    height: 100%;
    padding: 50px 46px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.12);
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 46px;
    width: 72px;
    height: 4px;
    background: #e10600;
    box-shadow: 0 0 16px rgba(225, 6, 0, 0.38);
}

.contact-form-heading {
    margin-bottom: 36px;
}

.contact-form-heading > span {
    display: inline-block;
    margin-bottom: 13px;
    color: #e10600;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin: 0 0 14px;
    color: #171717;
    font-size: clamp(30px, 3.5vw, 47px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.9px;
    text-transform: uppercase;
}

.contact-form-heading p {
    max-width: 650px;
    margin: 0;
    color: #717171;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

.moto747-contact-form {
    position: relative;
}

.contact-form-group {
    position: relative;
}

.contact-form-group label {
    display: block;
    margin-bottom: 9px;
    color: #242424;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.25px;
}

.contact-form-group label > span {
    color: #e10600;
}

.contact-input-wrapper,
.contact-textarea-wrapper {
    position: relative;
}

.contact-input-wrapper > i,
.contact-textarea-wrapper > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    color: #e10600;
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact-textarea-wrapper > i {
    top: 19px;
    transform: none;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    width: 100%;
    min-height: 55px;
    padding: 0 17px 0 46px;
    color: #222222;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 0;
    outline: 0;
    background: #f8f8f8;
    box-shadow: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form-wrapper textarea.form-control {
    min-height: 155px;
    padding-top: 16px;
    resize: vertical;
}

.contact-form-wrapper .form-control::placeholder {
    color: #a2a2a2;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: #e10600;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.07);
}

.contact-form-wrapper .form-select {
    cursor: pointer;
}


/* =========================================================
   KVKK
   ========================================================= */

.contact-form-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 17px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f8f8;
}

.contact-form-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    accent-color: #e10600;
    cursor: pointer;
}

.contact-form-check label {
    margin: 0;
    color: #6d6d6d;
    font-size: 11px;
    line-height: 1.65;
    cursor: pointer;
}

.contact-form-check label a {
    color: #e10600;
    font-weight: 700;
    text-decoration: none;
}

.contact-form-check label a:hover {
    color: #111111;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-submit-btn {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 28px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid #e10600;
    background: #e10600;
    box-shadow: 0 17px 38px rgba(225, 6, 0, 0.20);
    cursor: pointer;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.contact-submit-btn i {
    transition: transform 0.35s ease;
}

.contact-submit-btn:hover {
    color: #ffffff;
    border-color: #111111;
    background: #111111;
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.20);
}

.contact-submit-btn:hover i {
    transform: translateX(4px) rotate(-8deg);
}


/* =========================================================
   MAP SECTION
   ========================================================= */

.contact-map-section {
    padding: 105px 0 0;
    overflow: hidden;
    background: #09090a;
}

.contact-map-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
}

.contact-map-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #e10600;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-map-heading > span::before,
.contact-map-heading > span::after {
    content: "";
    width: 32px;
    height: 2px;
    background: #e10600;
}

.contact-map-heading h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2.3px;
    text-transform: uppercase;
}

.contact-map-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 14px;
    line-height: 1.8;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 520px;
    filter:
        grayscale(0.90)
        contrast(1.05)
        brightness(0.78);
}

.contact-map-card {
    position: absolute;
    top: 50%;
    left: max(20px, calc((100% - 1320px) / 2));
    z-index: 3;
    width: min(390px, calc(100% - 40px));
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 27px;
    color: #ffffff;
    background: rgba(8, 8, 9, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
    transform: translateY(-50%);
}

.contact-map-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    width: 55px;
    height: 3px;
    background: #e10600;
}

.contact-map-card-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    background: #e10600;
    box-shadow: 0 15px 35px rgba(225, 6, 0, 0.24);
}

.contact-map-card span {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-map-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.7;
}

.contact-map-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e10600;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-map-card a:hover {
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .contact-left-panel {
        padding: 42px 34px;
    }

    .contact-form-wrapper {
        padding: 44px 38px;
    }

    .contact-map-card {
        left: 25px;
    }
}

@media (max-width: 991px) {

    .contact-hero .banner-slider-m {
        height: 440px;
    }

    .contact-info-section {
        padding-bottom: 85px;
    }

    .contact-info-section .container {
        margin-top: -55px;
    }

    .contact-main-section {
        padding: 90px 0;
    }

    .contact-left-panel,
    .contact-form-wrapper {
        height: auto;
    }

    .contact-map-section {
        padding-top: 85px;
    }
}

@media (max-width: 767px) {

    .contact-hero .banner-slider-m {
        height: 360px;
    }

    .contact-hero .banner-slider-m img {
        object-position: 65% center;
    }

    .contact-info-section {
        padding-bottom: 70px;
    }

    .contact-info-section .container {
        margin-top: -35px;
    }

    .contact-info-card {
        min-height: 0;
        padding: 30px 24px;
    }

    .contact-main-section {
        padding: 72px 0;
    }

    .contact-left-panel {
        padding: 35px 25px;
    }

    .contact-left-panel > h2 {
        font-size: 37px;
        letter-spacing: -1.6px;
    }

    .contact-form-wrapper {
        padding: 38px 25px;
    }

    .contact-form-wrapper::before {
        left: 25px;
    }

    .contact-form-heading h2 {
        font-size: 33px;
        letter-spacing: -1.3px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-map-section {
        padding-top: 70px;
    }

    .contact-map-wrapper {
        min-height: auto;
        overflow: visible;
    }

    .contact-map-wrapper iframe {
        height: 420px;
    }

    .contact-map-card {
        position: relative;
        top: auto;
        left: auto;
        width: calc(100% - 30px);
        margin: -45px auto 0;
        transform: none;
    }
}

@media (max-width: 480px) {

    .contact-hero .banner-slider-m {
        height: 300px;
    }

    .contact-info-icon {
        width: 56px;
        height: 56px;
    }

    .contact-left-panel {
        padding: 31px 20px;
    }

    .contact-left-panel > h2 {
        font-size: 31px;
    }

    .contact-left-panel::before {
        font-size: 72px;
    }

    .contact-feature-item {
        gap: 12px;
    }

    .contact-feature-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .contact-form-wrapper {
        padding: 32px 18px;
    }

    .contact-form-wrapper::before {
        left: 18px;
    }

    .contact-form-heading h2 {
        font-size: 28px;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        font-size: 12px;
    }

    .contact-map-card {
        align-items: flex-start;
        padding: 22px 18px;
    }

    .contact-map-card-icon {
        width: 47px;
        height: 47px;
        flex-basis: 47px;
    }
}