* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "hind", sans-serif !important;
}

body {
    background: #f4f6f9;
}

.contact-section {
    background-image: url('../../images/line-backgroung-link.png');
    background-size: 100%;
    background-position: center; 
    background-repeat: no-repeat;
    padding: 80px 20px 0;
}

.section-one {
    text-align: center;
}

/* Heading */
.section-title {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: #fd7847;
    margin-bottom: 40px;
}

.section-title-content {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title-des {
    font-size: 22px;
    font-weight: normal;
    color: #b3bdcb;
    margin-bottom: 25px;
}

/* Cards */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(30px);
    padding-bottom: 32px;
}

.card {
    background: #fff;
    color: #333;
    width: 300px;
    padding: 28px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* Icon */
.icon {
    width: 48px;
    height: 48px;
    background: #eef3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Card text */
.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #122247;
    margin-bottom: 10px;
}

.card-para {
    font-size: 14px;
    color: #7688a2;
    margin-bottom: 0;
    line-height: 1.6;
    min-height: 90px;
}

/* Divider line */
.card-divider {
    border: none;
    border-top: 1px solid #e8edf4;
    margin: 20px 0 0px 0px;
}

/* Contact */
.contact {
    margin-top: 24px;
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 0 0 10px;
}

.contact img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact .email{
    color: #2563eb !important;
}

.contact a{
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: #122247;  
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #2563eb; 
}

/* ───── FORM SECTION ───── */

.form-wrapper {
    max-width: 780px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 4px 40px rgba(4, 18, 49, 0.08);
    margin: 32px auto 80px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header-title {
    font-size: 32px;
    font-weight: 600;
    color: #122247;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: #7688a2;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px !important;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 14px !important;
    color: #122247 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group label .optional {
    font-weight: 400;
    color: #aab4c0;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1.5px solid #e4eaf2;
    border-radius: 50px;
    font-size: 14px;
    color: #122247;
    background: #f9fbfd;
    outline: none;
    transition: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group textarea {
    padding: 14px 18px;
    border-radius: 16px;
    resize: none;
    min-height: 140px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3bdcb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
}

.select-wrapper {
    position: relative;
    min-height: 70px;
}
.select-wrapper .parsley-errors-list {
    margin-top: 6px;
}
.select-wrapper select {
    cursor: pointer;
    padding-right: 44px;
}
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 30%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #7688a2;
    pointer-events: none;
}

.submit-btn {
    display: block;
    width: 240px;
    margin: 24px auto 0;
    padding: 10px 32px;
    background: linear-gradient(135deg, #fd7847 0%, #f95d2e 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background:#004FE5!important;
	border:0!important
}
.submit-btn:focus {
    outline: none;
    box-shadow: none;
}
.parsley-errors-list {
    color: red !important;
    font-size: 12px;
    margin-top: 6px;
    list-style: none;
    padding-left: 0;
}

.parsley-errors-list li {
    color: #ff4d4f; /* soft red */
    font-size: 12px;
}

/* ───── CORPORATE OFFICE SECTION ───── */
.office-section {
    background: #ffffff;
    padding: 80px 20px;
}

.office-wrapper {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.office-info {
    flex: 1;
    max-width: 450px;
}

.office-badge {
    display: inline-block;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: solid 1px #dbeafe;
    background-color: #eff6ff;
}

.office-title {
    font-size: 30px;
    font-weight: 600;
    color: #122247;
    margin-bottom: 41px;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 33px;
    width: 92%;
}

.office-hours {
    font-size: 16px;
    color: #122247;
    margin-bottom: 7px;
}

.office-detail svg {
    width: 18px;
    height: 18px;
    color: #7688a2;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #7688a2;
    margin-bottom: 7px;
}

.office-location {
    font-size: 16px;
    color: #122247;
    line-height: 1.7;
    width: 92%;
}

.office-detail-content .closed {
    color: #7688a2;
}

.office-map {
    flex: 1.2;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(4, 18, 49, 0.1);
}

.office-map iframe {
    width: 100%;
    height: 390px;
    border: none;
    display: block;
}

/* ───── OTHER LOCATIONS ───── */
.locations-section {
    background: #f4f6f9;
    padding: 81px 20px;
}

.locations-header {
    text-align: center;
    margin-bottom: 40px;
}

.locations-header .sub-label {
    display: inline-block;
    border: solid 1px #dbeafe;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.locations-header .sub-heading {
    font-size: 24px;
    font-weight: 600;
    color: #122247;
    margin-bottom: 8px;
}

.locations-header .sub-para {
    font-size: 16px;
    font-weight: normal;
    color: #6b7280;
}

/* location cards  */
.location-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.location-card {
    background: #fff;
    border-radius: 14px;
    width: 210px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(4, 18, 49, 0.07);
    transition: transform 0.22s, box-shadow 0.22s;
    display: flex;
    flex-direction: column;
}

.location-card-img {
    width: 100%;
    height: 100px;
    background: linear-gradient(160deg, #dbe8f8 0%, #b8d0ee 100%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.location-card-img picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.location-card-img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

.location-card-body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #122247;
}

.location-city img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.location-address {
    font-size: 13px;
    color: #7688a2;
    line-height: 1.5;
    min-height: 60px;
    flex: 1;
    border-bottom: 1px solid #e8edf4;
}

.location-tag {
    display: inline-block;
    margin-top: 8px;
    background: #f3f4f6;
    color: #7688a2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

/* ───── NOT SURE STRIP ───── */
.not-sure-section {
    background-image: url('../../images/link-background.svg');
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 50px;
}

.not-sure-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 140px;
    flex-wrap: wrap;
    justify-content: center;
}

.not-sure-left .not-sure-heading-left {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.not-sure-left .not-sure-para-left {
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
}

.not-sure-cards {
    display: flex;
    gap: 16px;
    flex: 1;
    flex-wrap: wrap;
}

.not-sure-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 12px;
    flex: 1;
    min-width: 160px;
}

.ns-label-business {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: left;
    color: #60a5fa;
    margin-bottom: 6px;
}
.ns-label-support {
    color: #4ade80;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: left;
    margin-bottom: 6px;
}

.ns-label-general {
    color: #c084fc;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: left;
    margin-bottom: 6px;
}

.not-sure-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    /* gap: 6px; */
    line-height: 1.33;
}

.not-sure-card ul li{
    font-size: 12px;
    font-weight: normal;
    text-align: left;
    color: #d1d5db;
    line-height: 1.5;
}
.not-sure-card ul h4{
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    color: #d1d5db;
    line-height: 1.5;
    font-weight: 600;
}
.contact-section3 {
    width: 100%;
    margin: 80px auto !important;
    height: auto;
}

.contact-logistic-register-box {
    background: url('../../images/link-background-logistic-register.webp') no-repeat center center !important;
    background-size: cover !important;
    overflow: hidden;
    width: auto !important;
    padding: 27px 150px !important;
}

.contact-logistic-register {
    gap: 40px;
    padding: 48px 40px;
    text-align: center;
}

.contact-logistic-register h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.contact-more-btn3 {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}
/* ───── RESPONSIVE ───── */

/* Tablet - 1024px (iPad Pro / Nexus Hub) */
@media (max-width: 1024px) {
    .contact-section {
        background-image: url(../../images/line-backgroung-link@3x.png);
        object-fit: cover;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        padding: 60px 16px 0px 16px;
    }

    .office-section {
        padding: 60px 16px 0px 16px;
    }

    .cards {
        gap: 16px;
    }

    .card {
        width: 280px;
    }

    .form-wrapper {
        max-width: 680px;
        padding: 36px 36px;
    }

    .office-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .office-info {
        max-width: 100%;
        width: 100%;
    }

    .office-map {
        max-width: 100%;
        width: 100%;
    }

    .office-map iframe {
        height: 320px;
    }

    .location-cards {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin: auto;
    }

    .location-card {
        width: calc(24.33% - 12px);
    }

    .not-sure-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .not-sure-cards {
        display: flex;
        flex-wrap: nowrap;
    }
     
    .itl-web-contact-page {
        min-width: unset !important;
        max-width: 100% !important;
    }

    .contact-logistic-register {
        gap: 24px;
        padding: 40px 24px;
    }

    .contact-logistic-register h4 {
        font-size: 18px;
        white-space: normal;
    }
}

@media screen and (max-width: 1366px) and (min-width: 1024px) {
    .not-sure-wrapper {
        gap: 40px;
    }

    .not-sure-cards {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .not-sure-card {
        padding: 11px 15px;
    }
       
    .not-sure-card ul h4 {
        font-size: 12px;
    }
    
    .not-sure-card ul li {
        font-size: 10px;
    }

}

/* Nexus Hub - 900px */
@media (max-width: 900px) {
    .section-title-content {
        font-size: 28px;
    }

    .section-title-des {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 231px;
        padding: 15px 15px;

    }

    .icon {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 23px;
    }

    .card-para {
        min-height: 92px;
    }

    .form-wrapper {
        max-width: 90%;
        padding: 32px 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .office-section {
        padding: 60px 16px;
    }

    .office-title {
        font-size: 32px;
    }

    .office-detail {
        width: 100%;
    }

    .locations-section {
        padding: 60px 16px;
    }

    .location-card {
        width: calc(50% - 10px);
        min-width: 200px;
    }

    .not-sure-section {
        background-image: url('../../images/link-background.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
        padding: 48px 24px;
    }

    .not-sure-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .not-sure-left {
        width: 100%;
        text-align: center;
    }

    .not-sure-cards {
        justify-content: center;
    }

    .not-sure-card {
        min-width: 140px;
        flex: 1;
    }
    .contact-logistic-register {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 36px 20px;
        justify-content: center;
    }

    .contact-logistic-register h4 {
        font-size: 16px;
        text-align: center;
        white-space: normal;
    }
}

@media (min-width: 820px) and (max-width: 1023px) {
    .contact-section {
        background-size: 87vh !important;
        object-fit: cover;
        background-repeat: no-repeat;
    }

    .not-sure-section {
        padding: 25px 50px;
    }
}

/* Nexus Hub Max - 768px */
@media (max-width: 768px) {
    .contact-section {
        background-image: url(../../images/line-backgroung-link@3x.png);
        background-size: auto;
        object-fit: cover;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        padding: 20px 16px 85px 16px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .section-title-content {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-title-des {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 420px;
    }

    .form-wrapper {
        max-width: 100%;
        padding: 28px 20px;
        margin: 24px 16px 60px;
        border-radius: 12px;
    }

    .form-header-title {
        font-size: 24px;
    }

    .form-header p {
        font-size: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .submit-btn {
        width: 100%;
        max-width: 320px;
    }

    .office-section {
        padding: 48px 16px;
    }

    .office-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .office-map iframe {
        height: 280px;
    }

    .office-badge {
        font-size: 10px;
    }

    .office-location {
        font-size: 14px;
    }

    .office-hours {
        font-size: 14px;
    }

    .locations-section {
        padding: 48px 16px;
    }

    .locations-header .sub-heading {
        font-size: 24px;
    }

    .location-cards {
        flex-direction: column;
        align-items: center;
    }

    .location-card {
        width: 100%;
        max-width: 420px;
    }

    .location-card-img {
        height: 140px;
    }

    .not-sure-section {
        background-image: url('../../images/link-background.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
        padding: 40px 16px;
    }

    .not-sure-left .not-sure-heading-left {
        font-size: 22px;
    }

    .not-sure-left .not-sure-para-left {
        font-size: 14px;
    }

    .not-sure-cards {
        flex-direction: column;
        gap: 12px;
    }

    .not-sure-card {
        min-width: unset;
        width: 100%;
    }
    .itl-web-contact-page {
        min-width: unset !important;
        max-width: 100% !important;
    }

    .contact-logistic-register {
        flex-direction: column;
        gap: 16px;
        padding: 32px 16px;
        text-align: center;
    }

    .contact-logistic-register h4 {
        font-size: 16px;
        white-space: normal;
    }

    .contact-more-btn3 {
        width: auto;
        padding: 10px 28px;
        font-size: 13px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .contact-section {
        background-image: url(../../images/line-backgroung-link@3x.png);
        background-size: auto;
        object-fit: cover;
        background-repeat: no-repeat;
        padding: 40px 20px 85px 20px;
        position: relative;
        overflow: hidden;
    }

    .section-title-content {
        font-size: 20px;
    }

    .section-title-des {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .cards {
        padding-bottom: 16px;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .form-wrapper {
        margin: 50px 12px 48px;
        padding: 24px 16px;
    }

    .form-header-title {
        font-size: 20px;
    }

    .office-section,
    .locations-section {
        padding: 30px 30px;
    }

    .office-title {
        font-size: 24px;
    }

    .office-map iframe {
        height: 240px;
    }

    .locations-header .sub-heading {
        font-size: 20px;
    }

    .not-sure-section {
        background-image: url('../../images/link-background.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
        padding: 40px 16px;
    }

    .not-sure-left .not-sure-heading-left {
        font-size: 18px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 12px 24px;
    }
     .contact-logistic-register {
        padding: 28px 12px;
        gap: 14px;
    }

    .contact-logistic-register h4 {
        font-size: 15px;
    }

    .contact-more-btn3 {
        width: 100%;
        max-width: 240px;
        text-align: center;
        padding: 10px 20px;
    }

    .contact-logistic-register-box {
        padding: 24px 66px !important;
    }
}

