


.one-container .site-content {
        padding: 60px 0px 0px 0px;
}	

.worldwide-page {
  background: #f5f7fb;
}


.worldwide-intro-section, .worldwide-breadcrumbs-wrapper {
	max-width: var(--content-width);
    margin: auto;	
	padding-inline: 16px;
}

/* HERO */
.worldwide-hero {
  background: #000;
  color: #fff;
  padding-top: calc(var(--header-height, 96px) + 40px);
  height: 90vh;
  padding-bottom: 40px;
}


.worldwide-map-bg {
	display: flex;
    flex-direction: column;
	  max-width: var(--content-width);
    margin: auto;	
}



.worldwide-hero-inner {

  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 32px;
}

.worldwide-title {
  margin: 0;
  font-size: 5.8rem;
  color:#fff;
}

h2.worldwide-title {
  margin: 0;
  font-size: 3rem;
  color:var(--global-color-blue);
  font-weight:700;
}


.worldwide-intro {
	max-width: 60vw;
}


.worldwide-intro p {
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #000;
}
/* Map */
.worldwide-map-wrap {
  position: relative;
  display: flex;
  justify-content: center;   
}

.worldwide-map-image {
  position: relative;
  width: min(1400px, 100%);
  margin-inline: auto;          /* ✅ perfectly centered in viewport */
  aspect-ratio: 16 / 6;         /* adjust to your SVG proportions */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  overflow: hidden;
}

.worldwide-hero-title-overlay {
  position: relative;
}



/* Blue dots */
.worldwide-map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--global-color-blue);
  box-shadow: 0 0 12px rgba(28, 72, 240, 0.9);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.worldwide-map-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(28, 72, 240, 0.6);
  opacity: 0.8;
  animation: worldwide-pulse 1.8s infinite;
}

@keyframes worldwide-pulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Tooltip */
.worldwide-map-tooltip {
    position: absolute;
    max-width: 270px;
    border-top: 4px solid var(--global-color-blue);
    background: #fff;
    color: #000;
    padding: 13px 20px;
    font-size: 1rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 10;
}

.worldwide-map-tooltip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.office-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 8px;
    flex-direction: column;
}

.office-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.office-card-flag {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.office-card-title-wrap {
  display: flex;
  flex-direction: column;
}

.office-card-continent {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.75;
}

.office-card-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.office-card-line {
  font-size: 1rem;
  display: flex;
  gap: 4px;
}

.office-card-line.phone a {
    text-decoration:none;
}

.office-card-line .label {
  opacity: 0.7;
}

.office-card-line a {
  color: #000;
  text-decoration: underline;
}

.office-card-meta .office-card-line {
  display: flex;
  gap: 6px;
  font-size: 0.82rem;
}

.office-card-meta a {
  color: #000;
  text-decoration: underline;
}

/* OFFICES TABLE */
.worldwide-offices {
  background: #f5f7fb;
  padding: 40px 0 80px;
}

.worldwide-offices-inner {
  max-width: var(--content-width, 1160px);
  margin: 0 auto;
  padding: 0 24px;
}

.continent-block + .continent-block {
  margin-top: 40px;
}

.continent-heading {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--global-color-blue);
    margin: 0 0 10px;
    font-weight: 700;
}
.continent-office-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  border-top: 1px solid #dee3f0;
}

.office-row {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e3ef;
  font-size: 0.9rem;
}

.office-row:last-child {
	border-bottom: none;
}

.office-col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-col--cta {
  justify-content: flex-end;
}

.office-flag {
  width: 48px;
  height: auto;
}

.office-name {
    font-weight: 600;
    font-size: 1.5rem;
    color: #1B1B1B;
}

.office-phone,
.office-email {
  display: inline-flex;
  margin-right: 14px;
  text-decoration: none;
  color: #06183a;
  font-size: 1.5rem;
  line-height: 1.5rem;
  min-width: 50%;
}

.office-phone::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(../images/phone-blue.svg) center center / contain no-repeat;
    opacity: 1;
	margin-right: 5px;
}

.office-email::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(../images/email-blue.svg) center center / contain no-repeat;
    opacity: 1;
	margin-right: 5px;
}



.office-visit-link {
  color: var(--global-color-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.7rem;
}


.office-visit-link::after {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(../images/visit-website-blue.svg) center center / contain no-repeat;
    opacity: 1;
}
	
	

.office-visit-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .worldwide-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .office-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .office-col--cta {
    justify-content: flex-start;
  }
}



@media (min-width: 1280px) and (max-width: 1600px) and (min-resolution: 140dpi) and (min-aspect-ratio: 16 / 10) {
	
	.worldwide-title {
		margin: 0;
		font-size: 2.8rem;
		color: #fff;
	}
	
	.worldwide-hero {
		padding-top: calc(var(--header-height, 96px) );
		height: 90vh;
	}	
	
	.worldwide-map-image {

		width: min(1400px, 71%);

	}	
	
	.worldwide-intro-section, .worldwide-breadcrumbs-wrapper {
		padding-inline: 16px;
	}

	.continent-office-list .office-name, .continent-office-list .office-phone, .continent-office-list .office-email, .continent-office-list .office-visit-link { 
       font-size: 1rem;
	} 	
	
	
}

@media (max-width: 768px) {
	
	
 .worldwide-hero {
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center;
    min-height: 60vh;
    height: 60vh;
	padding-top: 0px;
  }
	
	
	.worldwide-map-bg {

		margin: auto;
		align-items: center;
		width: 100%;

	}	
	
	.worldwide-intro {
		max-width: 100vw;
	}	
	
	.worldwide-title {
		font-size: 3rem;
	}
	
	
	.worldwide-map-image
	 {
		aspect-ratio: 9 / 6;
	 }	
	
	.office-row {
		display: flex;
		flex-direction: column;
		margin-bottom: 3rem;
	}	
	
	
	.office-col {
		display: flex;
		align-items: center;
		gap: 0px;
		flex-direction: column;
	}

    .office-col--identity {
		flex-direction: row;
		gap: 12px;
		margin-bottom: 1rem;
	}
	
	.office-col--contacts {
		align-items: flex-start;
		row-gap: 2rem;
		margin-bottom: 1rem;

	}
	
	
	.office-visit-link {
		font-size: 1.2rem;
	}	
	
}