.lets-talk {
    position: relative;
    padding: 60px 80px;
    min-height: 650px;
}

.lets-talk-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.content-lets-talk-container {
    width: 100%;
    padding: 0 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

.contact-lets-talk-content {
    max-width: 800px;
    color: #000000;
    margin-top: 20px;
}

.contact-lt-small {
    position: relative;
    color: #000000;
    font-size: 40px;
    margin-bottom: 20px;
    padding-left: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-lt-small::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #000000;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.contact-lt-heading {
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-lets-talk-form {
    width: 500px;
    margin-top: 50px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

/* ROW */
.form-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

/* INPUT GROUP */
.contact-input-group {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.contact-input-group.full {
    width: 100%;
    margin-bottom: 16px;
}

.contact-input-group input,
.contact-input-group select {
    /* Remove all native browser styling — critical for Mac Safari */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    width: 100%;
    padding: 18px 44px 18px 18px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    background: #f1f1f1;
    color: #333;
    box-sizing: border-box;
    outline: none;

    /* Remove Safari inner shadow on inputs */
    -webkit-box-shadow: none;
            box-shadow: none;
    /* Remove iOS/macOS blue highlight */
    -webkit-tap-highlight-color: transparent;
}

/* Placeholder colour cross-browser */
.contact-input-group input::-webkit-input-placeholder { color: #888; }
.contact-input-group input::-moz-placeholder          { color: #888; opacity: 1; }
.contact-input-group input:-ms-input-placeholder      { color: #888; }
.contact-input-group input::placeholder               { color: #888; }

.contact-input-group select::-webkit-input-placeholder { color: #888; }
.contact-input-group select::placeholder               { color: #888; }

/* Remove default select arrow in IE/Edge */
.contact-input-group select::-ms-expand {
    display: none;
}

/* RIGHT ICON */
.contact-input-group img,
.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
    pointer-events: none;
    display: block;
}

/* Custom dropdown arrow for select (since native arrow removed) */
.contact-input-group select ~ .dropdown-arrow,
.contact-input-group.select::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    -webkit-transform: translateY(-70%) rotate(45deg);
        -ms-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/* BUTTON */
.contact-form-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 40px;
}

.contact-form-action button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;

    background: #3371FF;
    color: #fff;

    border: none;
    border-radius: 25px;

    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;

    /* Safari button reset */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.contact-form-action img {
    width: 24px;
    filter: invert(100%);
    -webkit-filter: invert(100%);
    display: block;
}

.desktop-contact-locations {
    padding: 60px 60px;
    background: #ffffff;
}

/* HEADER */
.desktop-contact-locations-header {
    margin-bottom: 5px;
}


.desktop-contact-map-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* GRID */
.desktop-contact-locations-grid {
    display: flex;
    gap: 30px;
}

/* MAP CARD */
.desktop-contact-map-card {
    position: relative;
    width: 100%;
    height: 600px;

    border-radius: 16px;
    overflow: hidden;
}

.desktop-contact-map-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* IFRAME */
.desktop-contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* LABEL */
.desktop-contact-map-label {
    position: absolute;
    bottom: 15px;
    right: 15px;

    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;

    font-size: 13px;
    font-weight: 500;
}

/* SECTION */
.desktop-contact-cta {
    position: relative;
    padding: 50px;
    margin-bottom: 100px;
}

/* BACKGROUND IMAGE */
.desktop-contact-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    padding: 60px;
}

.desktop-contact-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* CONTENT CONTAINER */
.desktop-contact-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 50px 60px;
    border-radius: 16px;
    grid-template-columns: 70% 30%;
}

/* LEFT SIDE */
.desktop-contact-cta-left {
    max-width: 70%;
}

.desktop-contact-cta-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: justify;
}

.desktop-contact-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* RIGHT SIDE */
.desktop-contact-cta-right {
    display: flex;
    align-items: center;
}

/* BUTTON */
.desktop-contact-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #fff;
    color: #000;

    border: 1px solid #000;
    border-radius: 25px;

    padding: 10px 18px;
    font-size: 18px;
    cursor: pointer;
}

.desktop-contact-cta-btn img {
    width: 24px;
    height: 20px;
}