.cu-assure {
  position: relative;
  overflow: hidden;
  background: #F9F5F5;
  padding: 72px 20px 64px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Diagonal lines pattern - same treatment as .vm-hero-wrap */
.cu-assure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(144, 25, 28, 0.03) 0px,
    rgba(144, 25, 28, 0.03) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}

/* Soft gold glow, top-right */
.cu-assure::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(201, 166, 86, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cu-assure-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cu-assure-eyebrow {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.cu-assure-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.cu-assure-title span {
  color: #90191c;
}

.cu-assure-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 20px auto 22px;
}

.cu-assure-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  max-width: 760px;
  margin: 0 auto 44px;
}

/* Cards */
.cu-assure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.cu-assure-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 26px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cu-assure-card:hover {
  transform: translateY(-4px);
  border-color: #e6d9d9;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.07);
}

.cu-assure-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.cu-assure-icon svg {
  stroke: #90191c;
  transition: stroke 0.35s ease;
}

.cu-assure-card:hover .cu-assure-icon {
  background: #90191c;
}

.cu-assure-card:hover .cu-assure-icon svg {
  stroke: #fff;
}

.cu-assure-body {
  min-width: 0;
}

.cu-assure-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0 0 6px;
}

.cu-assure-text {
  font-size: 14px;
  line-height: 1.65;
  color: #777;
  margin: 0;
}


/* ===============================================================
   .cu-map - Dubai office map + contact card   (Contact Us only)
   =============================================================== */
.cu-map {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  background: #fff;
  font-family: 'SF Pro Regular', sans-serif;
}

.cu-map-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.cu-map-eyebrow {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.cu-map-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.cu-map-title span {
  color: #90191c;
}

.cu-map-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 20px auto 22px;
}

.cu-map-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.cu-map-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Map embed - aspect-ratio keeps it responsive without a padding hack */
.cu-map-frame {
  position: relative;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #F9F5F5;
  min-height: 380px;
}

.cu-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Office card */
.cu-office {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 30px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.cu-office:hover {
  border-color: #e6d9d9;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.07);
}

.cu-office-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #90191c;
  background: #fdf2f2;
  border-radius: 20px;
  padding: 6px 14px;
  margin: 0 0 16px;
}

.cu-office-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 21px !important;
  font-weight: 500 !important;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.cu-office-line {
  width: 40px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 16px 0 24px;
}

.cu-office-rows {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.cu-office-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid #f4eeee;
}

.cu-office-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cu-office-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-office-icon svg {
  stroke: #90191c;
}

.cu-office-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cu-office-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 3px;
}

.cu-office-value {
  font-size: 15.5px;
  line-height: 1.5;
  color: #1a1a1a;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.25s ease;
}

.cu-office-value:hover {
  color: #90191c;
}

/* CTAs - pinned to the bottom so the card matches the map height */
.cu-office-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.cu-office-btn {
  flex: 1 1 auto;
  text-align: center;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 6px;
  border: 2px solid #90191c;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cu-office-btn--primary {
  background: #90191c;
  color: #fff;
}

.cu-office-btn--primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
}

.cu-office-btn--outline {
  background: transparent;
  color: #90191c;
}

.cu-office-btn--outline:hover {
  background: #90191c;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .cu-assure-grid { grid-template-columns: 1fr; }
  .cu-map-grid { grid-template-columns: 1fr; }
  .cu-map-frame { min-height: 340px; }
}

@media (max-width: 700px) {
  .cu-assure { padding: 54px 16px 48px; }
  .cu-assure-title,
  .cu-map-title { font-size: 26px; }
  .cu-assure-desc { margin-bottom: 32px; }
  .cu-map { padding: 50px 16px; }
  .cu-map-frame { min-height: 280px; }
  .cu-office { padding: 26px 22px; }
}

@media (max-width: 480px) {
  .cu-assure-card { padding: 22px 18px; gap: 14px; }
  .cu-office-ctas { flex-direction: column; }
  .cu-office-btn { flex: 1 1 auto; }
}
