.global-map-wrapper {
  width: 100%;
}

.global-map-container {
  position: relative;
}

#map {
  width: 100%;
  height: 700px;
}

.global-map-filters {
  position: absolute;
  top: 20px;
  /* right: 20px; */
   left:25px;
  z-index: 10;
}

.global-map-filters button {
  padding: 10px 20px;
  margin-left: 15px;
  cursor: pointer;
}

.marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.factory {
  /* background: red; */
}

.office {
  /* background: blue; */
}

.global-map-footer {
  /* margin-top: 24px; */
}
.marker {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.marker img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (min-width:1500px) {
    .marker {
  width: 44px;
  height: 58px;
  cursor: pointer;
}
}
.global-map-container canvas{
    border-radius:20px;
}


.global-map-title {
    max-width:1450px;
    margin:40px auto;
    text-align:center;

}
.global-map-title h2{
    font-family: Inter;
font-weight: 600;
font-size: 36px;
line-height: 50px;
letter-spacing: 0%;
text-align: center;
color: #051628;

}

.global-map-filters button{
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
}



/* ------------------------------------------ map footer -------------------------- */

.stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FCFF;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    border: 1px solid #D1DBE6;
    margin-top:-20px;
    margin-bottom: 100px;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 28px 20px;
    position: relative;
    flex-direction: column;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #d4dbe4;
}

.stat-icon {
    margin-bottom: 12px;
    align-items: center;
    align-self: center;
    text-align: center;
}

.stat-icon img {
    /* width: 24px; */
    /* height: 24px; */
    object-fit: contain;
    align-self: center;
    text-align: center;
}

.stat-number {
    font-family: Inter;
font-weight: 700;
font-size: 44px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
    color: #051628;
    margin-bottom: 8px;
}

.stat-label {
    font-family: Inter;
font-weight: 500;
font-size: 22px;
line-height: 32px;
text-align: center;

    color: #051628;
    font-weight: 500;
}

@media (max-width: 991px) {
    .stats-strip {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .stat-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }
}
.global-map-filters button{
    background:#FFFFFF;
}
/* ---------------------------css for the contact us block -----------------------------------------*/
/* ── Form wrapper ── */
.webform-submission-contact-form {
  background: #fff;
  /* border: 1px solid #e0e0e0; */
  border-radius: 10px;
  padding: 32px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  align-items: start;
}

/* ── Every direct form item — label above input ── */
.webform-submission-contact-form .js-form-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px;
}

/* ── Labels ── */
.webform-submission-contact-form label:not(.option) {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

/* ── Inputs, selects, textarea ── */
.webform-submission-contact-form input[type="text"],
.webform-submission-contact-form input[type="email"],
.webform-submission-contact-form input[type="tel"],
.webform-submission-contact-form select,
.webform-submission-contact-form textarea {
  width: 100%;
  padding: 18px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.webform-submission-contact-form input::placeholder,
.webform-submission-contact-form textarea::placeholder {
  color: #aaa;
}

.webform-submission-contact-form input:focus,
.webform-submission-contact-form select:focus,
.webform-submission-contact-form textarea:focus {
  border-color: #1a1a1a;
}

/* ── Select arrow ── */
.webform-submission-contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── Textarea ── */
.webform-submission-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Full width fields ── */
.webform-type-select.form-item-how-can-we-help-you,
.webform-type-textarea,
.js-webform-type-checkbox,
.webform-actions {
  grid-column: 1 / -1;
}

/* ══ ADDRESS BLOCK ══
   All wrapper divs become transparent to the grid
   so their children sit directly in the 3-col grid ── */
/* #country-ajax-wrapper,
#country-ajax-wrapper fieldset,
#country-ajax-wrapper fieldset .fieldset-wrapper,
#country-ajax-wrapper #edit-country-country-code {
  display: contents !important;
}

#country-ajax-wrapper fieldset legend {
  display: none !important;
} */

/* Country select — column 3 */
/* .form-item-country-country-code {
  grid-column: 3 / 4;
} */

/* State — column 1 */
/* .form-item-country-administrative-area {
  grid-column: 1 / 2;
} */

/* Zip — column 2 */
/* .form-item-country-postal-code {
  grid-column: 2 / 3;
} */
.fieldset-wrapper {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

div[id*="country-ajax-wrapper"] {
    grid-column: span 3;
    
}
.address--wrapper{
    border:none;
}
.address-container-inline:empty {
    display: none;
}

/* Phone — column 3 */
.webform-type-tel {
  grid-column: 3 / 4;
}

/* ── Checkboxes ── */
.js-webform-type-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
}

.js-webform-type-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #1a1a1a;
}

.js-webform-type-checkbox label.option {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
  cursor: pointer;
}

.js-webform-type-checkbox label.option a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Required asterisk ── */
.form-required::after {
  content: '*';
  color: #e53e3e;
  margin-left: 2px;
}

/* ── Submit button ── */
.webform-actions {
  margin-top: 8px;
}

.webform-button--submit {
  background: #051628;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.webform-button--submit:hover {
  background: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .webform-submission-contact-form {
    grid-template-columns: 1fr;
  }

  .form-item-country-country-code,
  .form-item-country-administrative-area,
  .form-item-country-postal-code,
  .webform-type-tel {
    grid-column: 1 / -1;
  }
}

.webform-submission-contact-form .js-form-item.webform-type-checkbox{
  flex-direction:row !important;
  align-items: center;
}
.webform_description {
    border: 1px solid #AFBECF;
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    max-width: 100%;
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 16px 24px; */
    /* align-items: start; */
}
.webform_description p{
    padding:0 32px;
    font-family: Inter;
font-weight: 500;
font-size: 22px;
line-height: 32px;
color:#000000;
    /* text-align: center; */

}
.webform_description p span{
font-family: Inter;
font-weight: 700;
font-size: 22px;
line-height: 32px;
text-align: center;
}
.webform-submission-contact-form label:not(.option){
    font-family: Inter;
font-weight: 500;
font-size: 18px;
line-height: 32px;
    color:#000000
}

.js-webform-type-checkbox label.option {
    font-family: Inter;
font-weight: 500;
    align-items:center;
font-size: 18px;
line-height: 32px;
letter-spacing: 0%;

}
.webform-button--submit {
  background-color: #051628;
  background-image: url('/themes/custom/betafence/images/logos/Frame(7).png');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px 20px;
  padding-right: 48px; /* make room for icon */
  filter: none;
}

div#block-betafence-webform h2{
    font-family: Inter;
font-weight: 800;
font-size: 44px;
line-height: 100%;
text-align: center;
text-transform: capitalize;
color:#051628;
}


.webform_subtitle {
    font-family: Inter;
font-weight: 500;
font-size: 36px;
line-height: 32px;
text-align: center;
color:#000000;
    margin-bottom:60px;
    margin-top:20px;
}





/* footer section css */
div#block-betafence-contactuspagefooter {
  background: #F6FAFF;
}
.trust-features {
    margin-top:80px;
    display: flex;
    align-items: stretch;
    background: #F6FAFF;
    border-bottom: 4px solid #0057b8;
}

.trust-feature-item {
    flex: 1;
    padding: 62px 24px;
    position: relative;
}

.trust-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: 1px;
    height: calc(100% - 60px);
    background: #d4dbe4;
}

.trust-feature-icon {
    margin-bottom: 12px;
}

.trust-feature-icon img {
    /* width: 24px; */
    /* height: 24px; */
    display: block;
}

.trust-feature-item h3 {
    margin: 0 0 10px;
    font-family: Inter;
font-weight: 700;
font-size: 32px;
line-height: 42px;
 color: #051628;
}

.trust-feature-item p {
    margin: 0;
    font-family: Inter;
font-weight: 500;
font-size: 22px;
line-height: 32px;
letter-spacing: 0%;
  color: #051628;
}

@media (max-width: 991px) {
    .trust-features {
        flex-wrap: wrap;
    }

    .trust-feature-item {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .trust-feature-item {
        width: 100%;
        flex: 0 0 100%;
    }

    .trust-feature-item::after {
        display: none;
    }
}