/*==============================================
   Contact One – Final Polished Version
===============================================*/

.contact-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

/* Background image (left side) */
.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - -30px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: -1;
}

/* Layout */
.contact-one__row {
    align-items: stretch;
}

/* =======================
   MAP STYLING
======================= */
.contact-one__map {
    position: relative;
    height: 100%;
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    background: #0f141a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.contact-one__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: saturate(0.85) contrast(1.02);
}

/* Map overlay CTA */
.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
    text-decoration: none;
}

.contact-one__map:hover .map-overlay {
    opacity: 1;
}

.map-overlay span {
    background: rgba(17, 24, 39, 0.85);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =======================
   RIGHT PANEL
======================= */
.contact-one__right {
    position: relative;
    display: block;
    margin-left: 14px;
    background-color: var(--nexin-black);
    padding: 110px 90px 100px;
    z-index: 1;
}

/* Extend background */
.contact-one__right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -10000px;
    bottom: 0;
    background-color: var(--nexin-black);
    z-index: -1;
}

/* Section title */
.contact-one__right .section-title {
    margin-bottom: 28px;
}

.contact-one__right .section-title__tagline-shape {
    background-color: var(--nexin-white);
}

.contact-one__right .section-title__tagline {
    color: var(--nexin-white);
}

.contact-one__right .section-title__title {
    color: var(--nexin-white);
    max-width: 520px;
    margin-right: 0;
}

/* =======================
   DETAILS
======================= */
.contact-one__details {
    margin-top: 18px;
    color: var(--nexin-white);
}

.contact-brand {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-address {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* Contact chips */
.contact-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 18px;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.chip:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

/* CTA button */
.contact-one__btn-box {
    margin-bottom: 18px;
}

.contact-one__btn-box .thm-btn {
    border: none;
}

/* Description text */
.contact-one__text {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1199px) {
    .contact-one__right {
        padding: 90px 60px 80px;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .contact-one {
        padding-bottom: 80px;
    }

    .contact-one__bg {
        display: none;
    }

    .contact-one__right {
        padding: 70px 40px;
    }
}

@media (max-width: 575px) {
    .contact-one__right {
        padding: 60px 24px;
    }

    .contact-one__right .section-title__title {
        font-size: 32px;
        line-height: 1.2;
    }
}


/*==============================================
   Contact Page 
===============================================*/
.contact-page {
    position: relative;
    display: block;
    padding: 105px 0 120px;
    z-index: 1;
}

.contact-page__top {
    position: relative;
    display: block;
}

.contact-page__top-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    color: var(--nexin-black);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}

.contact-page__contact-list {
    position: relative;
    display: block;
}

.contact-page__contact-single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 22px 30px 21px;
    border: 1px solid var(--nexin-bdr-color);
    margin-bottom: 30px;
}

.contact-page__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--nexin-bdr-color);
    background-color: var(--nexin-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__contact-single:hover .contact-page__icon {
    border: 1px solid var(--nexin-bdr-black);
    background-color: var(--nexin-black);
}

.contact-page__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--nexin-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__contact-single:hover .contact-page__icon span {
    color: var(--nexin-white);
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.contact-page__contact-content {
    position: relative;
    display: block;
    flex: 1;
}

.contact-page__contact-content h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--nexin-black);
    text-transform: capitalize;
    margin-bottom: 3px;
}

.contact-page__contact-content p {
    font-weight: 300;
    font-family: var(--nexin-font-two);
}

.contact-page__contact-content p a {
    color: var(--nexin-gray);
}

.contact-page__contact-content p a:hover {
    color: var(--nexin-base);
}

.contact-page__bottom {
    position: relative;
    display: block;
    padding-top: 50px;
}

.contact-page__bottom-left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 688px;
    width: 100%;
}

.contact-page__bottom-right {
    position: relative;
    display: block;
    border: 1px solid var(--nexin-bdr-color);
    padding: 46px 60px 60px;
}

.contact-page__form-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    color: var(--nexin-black);
    margin-bottom: 28px;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
    height: 56px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--nexin-bdr-color);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: var(--nexin-gray);
    font-family: var(--nexin-font-two);
    display: block;
}

.contact-page__input-box textarea {
    font-size: 16px;
    font-weight: 300;
    height: 150px;
    width: 100%;
    color: var(--nexin-gray);
    font-family: var(--nexin-font-two);
    background-color: transparent;
    border: 1px solid var(--nexin-bdr-color);
    padding: 15px 30px 30px;
    outline: none;
    position: relative;
    display: block;
}

.contact-page__input-box.text-message-box {
    height: 150px;
}

.contact-page__btn-box {
    position: relative;
    display: block;
}

.contact-page__btn-box .thm-btn {
    color: var(--nexin-white);
    background-color: var(--nexin-black);
}

.contact-page__btn-box .thm-btn::before {
    background-color: var(--nexin-base);
}

.contact-page__btn-box .thm-btn::after {
    background-color: rgba(var(--nexin-base-rgb), .30);
}


/*==============================================
   End  
===============================================*/
