/*
 * E House Movers - shared section styles
 * Sections reused across the migrated service pages: hero, ticker/marquee,
 * offer form, FAQ and the shared services/pricing/process blocks (.vm-*).
 * Built from the Elementor per-widget Custom CSS of all migrated pages,
 * de-duplicated. Loaded on every static page template.
 * 
 * NOTE: additional .vm-* styling also lives in the site-wide
 * 'Inner Pages Css' snippet, which continues to load independently.
 */

/* --- first seen on apartment-movers --- */
.vm-hero-wrap {
  position: relative;
  overflow: hidden;
}

/* Diagonal lines pattern */
.vm-hero-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 60px,
    rgba(144,25,28,0.03) 60px,
    rgba(144,25,28,0.03) 61px
  );
  pointer-events: none;
}

/* Soft gold radial glow top-right */
.vm-hero-wrap::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,166,86,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vm-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px 50px;
  font-family: 'SF Pro Regular', sans-serif;
  position: relative;
  z-index: 1;
}

.vm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vm-hero-h2 {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 12px;
}

.vm-hero-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 24px;
}

.vm-hero-title span {
  color: #90191c;
}

.vm-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 16px;
}

.vm-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.vm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-btn-primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.vm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #90191c;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-btn-secondary:hover {
  background: #90191c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.vm-hero-visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.vm-hero-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .vm-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vm-hero-title { font-size: 34px; }
  .vm-hero-visual img { height: 380px; }
}

@media (max-width: 600px) {
  .vm-hero { padding: 36px 16px 40px; }
  .vm-hero-title { font-size: 28px; }
  .vm-hero-desc { font-size: 15px; }
  .vm-hero-ctas { flex-direction: column; }
  .vm-btn-primary, .vm-btn-secondary { justify-content: center; width: 100%; }
  .vm-hero-visual img { height: 280px; }
}

/* --- first seen on apartment-movers --- */
.vm-ticker {
  background: #90191c;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.vm-ticker-track {
  display: flex;
  width: max-content;
  animation: vmTickerScroll linear infinite;
}

.vm-ticker:hover .vm-ticker-track {
  animation-play-state: paused;
}

.vm-ticker-set {
  display: flex;
  align-items: center;
  gap: 0;
}

.vm-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 32px;
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.vm-ticker-item strong {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 18px;
  color: #c9a656;
}

.vm-ticker-dot {
  width: 5px;
  height: 5px;
  background: #c9a656;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes vmTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .vm-ticker-item { padding: 0 24px; font-size: 13px; }
  .vm-ticker-item strong { font-size: 15px; }
}

/* --- first seen on apartment-movers --- */
.vm-offer-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.vm-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left - Offer Card */
.vm-offer-card {
  background: #90191c;
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-offer-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(201,166,86,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.vm-offer-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.vm-offer-label {
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 16px;
}

.vm-offer-percent {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin: 0 0 6px;
}

.vm-offer-percent span {
  color: #c9a656;
}

.vm-offer-sub {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
}

.vm-offer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}

.vm-offer-line {
  width: 50px;
  height: 2px;
  background: #c9a656;
  margin: 20px auto 28px;
}

.vm-offer-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.vm-offer-btn-book {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #90191c;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.vm-offer-btn-book:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.vm-offer-btn-contact {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.4);
}

.vm-offer-btn-contact:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Right - Form */
.vm-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.vm-form-heading {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 22px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.vm-form-heading span {
  color: #90191c;
}

.vm-form-line {
  width: 40px;
  height: 3px;
  background: #90191c;
  margin: 0 auto 28px;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .vm-offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .vm-offer-section { padding: 40px 16px; }
  .vm-offer-card { padding: 40px 24px; }
  .vm-offer-percent { font-size: 44px; }
  .vm-form-card { padding: 28px 20px; }
}

/* --- first seen on apartment-movers --- */
.vm-faq {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.vm-faq-header {
  text-align: center;
  margin: 0 auto 48px;
}

.vm-faq-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px !important;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.vm-faq-title span {
  color: #90191c;
}

.vm-faq-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  margin: 0 auto;
  border-radius: 2px;
}

/* Two columns */
.vm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* FAQ Item */
.vm-faq-item {
  background: #fdf8f8;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vm-faq-item.active {
  background: #fff;
  box-shadow: 0 4px 20px rgba(144,25,28,0.06);
}

.vm-faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px !important;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.vm-faq-question:hover {
  background: rgba(144,25,28,0.02);
}

.vm-faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vm-faq-item.active .vm-faq-q-icon {
  background: #90191c;
}

.vm-faq-q-icon svg {
  stroke: #90191c;
  transition: all 0.3s ease;
}

.vm-faq-item.active .vm-faq-q-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.vm-faq-question h3 {
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 15px !important;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.vm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.vm-faq-answer-inner {
  padding: 0 22px 20px 64px ;
}

.vm-faq-answer p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 960px) {
  .vm-faq-grid { grid-template-columns: 1fr; }
  .vm-faq-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .vm-faq { padding: 50px 16px; }
  .vm-faq-title { font-size: 24px; }
  .vm-faq-question { padding: 16px 16px; gap: 12px; }
  .vm-faq-answer-inner { padding: 0 16px 16px 54px; }
  .vm-faq-question h3 { font-size: 14px; }
}

/* --- first seen on villa-movers --- */
.vm-types {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.vm-types-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.vm-types-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.vm-types-title span {
  color: #90191c;
}

.vm-types-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.vm-types-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Split Layout */
.vm-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Accordion */
.vm-types-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vm-type-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0e8e8;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vm-type-item.active {
  border-color: #e0d0d0;
  box-shadow: 0 4px 18px rgba(144,25,28,0.06);
}

.vm-type-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
}

.vm-type-header:hover {
  background: #fdf8f8;
}

.vm-type-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 24px;
  color: #f0e8e8;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  transition: color 0.3s ease;
}

.vm-type-item.active .vm-type-num {
  color: #c9a656;
}

.vm-type-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  margin: 0;
}

.vm-type-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vm-type-item.active .vm-type-icon {
  background: #90191c;
}

.vm-type-icon svg {
  stroke: #90191c;
  transition: all 0.3s ease;
}

.vm-type-item.active .vm-type-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}

.vm-type-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.vm-type-body-inner {
  padding: 0 24px 20px 76px;
}

.vm-type-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Image Side */
.vm-types-visual {
  position: sticky;
  top: 100px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  background: #fff;
}

.vm-types-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.vm-types-img.active {
  opacity: 1;
  position: relative;
}

.vm-types-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(144,25,28,0.85) 0%, transparent 100%);
  padding: 40px 24px 18px;
}

.vm-types-img-label p {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 960px) {
  .vm-types-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vm-types-visual {
    position: relative;
    top: 0;
    order: -1;
  }
  .vm-types-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .vm-types { padding: 50px 16px; }
  .vm-types-title { font-size: 24px; }
  .vm-type-header { padding: 16px 16px; gap: 12px; }
  .vm-type-num { font-size: 20px; width: 30px; }
  .vm-type-name { font-size: 13px; }
  .vm-type-body-inner { padding: 0 16px 16px 58px; }
  .vm-types-img, .vm-types-img.active { height: 300px; }
}

/* --- first seen on villa-movers --- */
.vm-why {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.vm-why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.vm-why-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 38px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.vm-why-title span {
  color: #90191c;
}

.vm-why-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 20px 0 0;
}

.vm-why-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Cards */
.vm-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.vm-why-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border-right: 1px solid #f0e8e8;
}

.vm-why-card:last-child {
  border-right: none;
}

.vm-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #c9a656;
  transition: width 0.4s ease;
  border-radius: 2px;
}

.vm-why-card:hover::after {
  width: 50px;
}

.vm-why-card:hover {
  background: #fdf8f8;
}

.vm-why-card:hover .vm-why-icon {
  background: #90191c;
  transform: translateY(-4px);
}

.vm-why-card:hover .vm-why-icon svg {
  stroke: #fff;
}

.vm-why-icon {
  width: 56px;
  height: 56px;
  background: #fdf2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.vm-why-icon svg {
  stroke: #90191c;
  transition: stroke 0.4s ease;
}

.vm-why-card-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  line-height: 1.4;
}

.vm-why-card-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

@media (max-width: 1100px) {
  .vm-why-grid { grid-template-columns: repeat(3, 1fr); }
  .vm-why-card:nth-child(3) { border-right: none; }
  .vm-why-card { border-bottom: 1px solid #f0e8e8; }
}

@media (max-width: 960px) {
  .vm-why-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .vm-why-line { margin: 20px auto 0; }
  .vm-why-title { font-size: 28px; }
}

@media (max-width: 700px) {
  .vm-why-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-why-card:nth-child(2n) { border-right: none; }
  .vm-why-card { padding: 28px 18px; }
}

@media (max-width: 480px) {
  .vm-why { padding: 50px 16px; }
  .vm-why-grid { grid-template-columns: 1fr; }
  .vm-why-card { border-right: none; }
}

/* --- first seen on office-movers --- */
.vm-offer-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.vm-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left - Offer Card */
.vm-offer-card {
  background: #90191c;
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-offer-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(201,166,86,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.vm-offer-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.vm-offer-label {
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 16px;
}

.vm-offer-percent {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin: 0 0 6px;
}

.vm-offer-percent span {
  color: #c9a656;
}

.vm-offer-sub {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
}

.vm-offer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}

.vm-offer-line {
  width: 50px;
  height: 2px;
  background: #c9a656;
  margin: 20px auto 28px;
}

.vm-offer-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.vm-offer-btn-book {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #90191c;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.vm-offer-btn-book:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.vm-offer-btn-contact {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.4);
}

.vm-offer-btn-contact:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Right - Form */
.vm-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.vm-form-heading {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 22px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.vm-form-heading span {
  color: #90191c;
}

.vm-form-line {
  width: 40px;
  height: 3px;
  background: #90191c;
  margin: 0 auto 28px;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .vm-offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .vm-offer-section { padding: 40px 16px; }
  .vm-offer-card { padding: 40px 24px; }
  .vm-offer-percent { font-size: 44px; }
  .vm-form-card { padding: 28px 20px; }
}

/* --- first seen on office-movers --- */
.vm-services {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
 
}

.vm-services-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.vm-services-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.vm-services-title span {
  color: #90191c;
}

.vm-services-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.vm-services-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 10px;
}

/* Cards Grid */
.vm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 46px;
}

/* Card */
.vm-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.vm-service-card:hover {
  background: #90191c;
  border-color: #90191c;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(144,25,28,0.2);
}

.vm-service-card:hover .vm-service-icon {
  background: rgba(255,255,255,0.15);
}

.vm-service-card:hover .vm-service-icon svg {
  stroke: #c9a656;
}

.vm-service-card:hover .vm-service-name {
  color: #fff;
}

.vm-service-card:hover .vm-service-text {
  color: rgba(255,255,255,0.85);
}

/* Number */
.vm-service-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 42px;
  color: #f2eded;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  transition: color 0.4s ease;
}

.vm-service-card:hover .vm-service-num {
  color: rgba(255,255,255,0.1);
}

/* Icon */
.vm-service-icon {
  width: 52px;
  height: 52px;
  background: #fdf2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.4s ease;
}

.vm-service-icon svg {
  stroke: #90191c;
  transition: stroke 0.4s ease;
}

.vm-service-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px !important;
  color: #1a1a1a;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.vm-service-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: color 0.4s ease;
}

/* CTAs */
.vm-services-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vm-srv-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #90191c;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-srv-btn-primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.vm-srv-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #90191c;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-srv-btn-secondary:hover {
  background: #90191c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

@media (max-width: 960px) {
  .vm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-services-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .vm-services { padding: 50px 16px; }
  .vm-services-grid { grid-template-columns: 1fr; }
  .vm-services-title { font-size: 24px; }
  .vm-service-card { padding: 28px 22px; }
  .vm-services-ctas { flex-direction: column; align-items: center; }
  .vm-srv-btn-primary, .vm-srv-btn-secondary { width: 100%; justify-content: center; }
}

/* --- first seen on furniture-movers --- */
.vm-hero-wrap {
  position: relative;
  overflow: hidden;
}

/* Diagonal lines pattern */
.vm-hero-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 60px,
    rgba(144,25,28,0.03) 60px,
    rgba(144,25,28,0.03) 61px
  );
  pointer-events: none;
}

/* Soft gold radial glow top-right */
.vm-hero-wrap::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,166,86,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vm-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px 50px;
  font-family: 'SF Pro Regular', sans-serif;
  position: relative;
  z-index: 1;
}

.vm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vm-hero-h2 {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 12px;
}

.vm-hero-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 24px;
}

.vm-hero-title span {
  color: #90191c;
}

.vm-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 16px;
}

.vm-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.vm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-btn-primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.vm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #90191c;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.vm-btn-secondary:hover {
  background: #90191c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.vm-hero-visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.vm-hero-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .vm-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vm-hero-title { font-size: 34px; }
  .vm-hero-visual img { height: 380px; }
}

@media (max-width: 600px) {
  .vm-hero { padding: 36px 16px 40px; }
  .vm-hero-title { font-size: 28px; }
  .vm-hero-desc { font-size: 15px; }
  .vm-hero-ctas { flex-direction: column; }
  .vm-btn-primary, .vm-btn-secondary { justify-content: center; width: 100%; }
  .vm-hero-visual img { height: 280px; }
}

/* ===============================================================
   .eh-modes - shipping / transport mode cards  (SHARED)
   Built for vehicle-transport "Car Shipping Options" (sea / land /
   air) and intended for reuse on international-movers
   "By Sea / By Road / By Air".
   Each card: optional image, mode name, then any number of
   sub-headings and bullet groups in original document order.
   =============================================================== */
.eh-modes {
  padding: 70px 20px;
  background: #fff;
}

.eh-modes-header {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.eh-modes-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.eh-modes-title span {
  color: #90191c;
}

.eh-modes-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto;
}

.eh-modes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eh-mode-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0 0 28px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.eh-mode-card:hover {
  border-color: rgba(144, 25, 28, 0.25);
  box-shadow: 0 12px 30px rgba(144, 25, 28, 0.08);
  transform: translateY(-4px);
}

.eh-mode-visual {
  margin: 0 0 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F9F5F5;
}

.eh-mode-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eh-mode-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 19px;
  line-height: 1.3;
  color: #90191c;
  margin: 0 28px 14px;
}

.eh-mode-sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 18px 28px 10px;
}

.eh-mode-list {
  list-style: none;
  margin: 0;
  padding: 0 28px;
}

.eh-mode-list li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.eh-mode-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a656;
}

@media (max-width: 960px) {
  .eh-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eh-modes-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .eh-modes {
    padding: 48px 16px;
  }

  .eh-modes-grid {
    grid-template-columns: 1fr;
  }

  .eh-modes-title {
    font-size: 24px;
  }
}


/* ===============================================================
   .eh-modes compact variant - bare freight-mode labels
   (international-movers "By Sea / By Road / By Air")
   =============================================================== */
.eh-modes--compact {
  padding: 0 20px 60px;
}

.eh-mode-card--label {
  padding: 24px 20px;
  text-align: center;
  justify-content: center;
}

.eh-mode-card--label .eh-mode-name {
  margin: 0;
  font-size: 17px;
}

/* ===============================================================
   .eh-destinations - grouped destination link grid  (SHARED)
   All links visible, no tabs, so every destination stays one click
   away and crawlable.
   =============================================================== */
.eh-destinations {
  padding: 70px 20px;
  background: #F9F5F5;
}

.eh-dest-header {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.eh-dest-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.eh-dest-title span {
  color: #90191c;
}

.eh-dest-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto;
}

.eh-dest-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.eh-dest-group {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 26px 24px;
}

.eh-dest-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #90191c;
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid #f0e6e6;
}

.eh-dest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eh-dest-list li {
  margin: 0 0 10px;
}

.eh-dest-list a {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.eh-dest-list a:hover {
  color: #90191c;
  transform: translateX(3px);
}

/* ===============================================================
   .eh-posts - related posts grid (WP_Query)  (SHARED)
   =============================================================== */
.eh-posts {
  padding: 70px 20px;
  background: #fff;
}

.eh-posts-header {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.eh-posts-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.eh-posts-title span {
  color: #90191c;
}

.eh-posts-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto;
}

.eh-posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eh-post-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}

.eh-post-card:hover {
  border-color: rgba(144, 25, 28, .25);
  box-shadow: 0 12px 30px rgba(144, 25, 28, .08);
  transform: translateY(-4px);
}

.eh-post-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F9F5F5;
}

.eh-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eh-post-body {
  padding: 22px 24px 26px;
}

.eh-post-date {
  display: block;
  font-size: 13px;
  color: #c9a656;
  margin: 0 0 8px;
}

.eh-post-title {
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.eh-post-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color .25s ease;
}

.eh-post-title a:hover {
  color: #90191c;
}

@media (max-width: 1100px) {
  .eh-dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .eh-dest-grid,
  .eh-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eh-dest-title,
  .eh-posts-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .eh-destinations,
  .eh-posts {
    padding: 48px 16px;
  }

  .eh-dest-grid,
  .eh-posts-grid {
    grid-template-columns: 1fr;
  }

  .eh-dest-title,
  .eh-posts-title {
    font-size: 24px;
  }
}

/* a long destination group (Europe) spans the row and flows into columns */
.eh-dest-group--wide {
  grid-column: 1 / -1;
}

.eh-dest-group--wide .eh-dest-list {
  columns: 4;
  column-gap: 24px;
}

.eh-dest-group--wide .eh-dest-list li {
  break-inside: avoid;
}

@media (max-width: 1100px) {
  .eh-dest-group--wide .eh-dest-list { columns: 3; }
}

@media (max-width: 960px) {
  .eh-dest-group--wide .eh-dest-list { columns: 2; }
}

@media (max-width: 600px) {
  .eh-dest-group--wide .eh-dest-list { columns: 1; }
}


/* ===============================================================
   .eh-locations - per-emirate storage location cards  (SHARED)
   One repeating component rendered per emirate: area list, unit
   size chips, optional "Learn More" link.
   =============================================================== */
.eh-locations {
  padding: 70px 20px;
  background: #fff;
}

.eh-loc-header {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.eh-loc-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.eh-loc-title span {
  color: #90191c;
}

.eh-loc-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto;
}

.eh-loc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.eh-loc-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 26px;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}

.eh-loc-card:hover {
  border-color: rgba(144, 25, 28, .25);
  box-shadow: 0 12px 30px rgba(144, 25, 28, .08);
  transform: translateY(-4px);
}

.eh-loc-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: #90191c;
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid #f0e6e6;
}

.eh-loc-areas {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  columns: 2;
  column-gap: 18px;
}

.eh-loc-areas li {
  position: relative;
  padding: 0 0 0 16px;
  margin: 0 0 9px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  break-inside: avoid;
}

.eh-loc-areas li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a656;
}

.eh-loc-sizes-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.eh-loc-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.eh-loc-size {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #eee;
  border-radius: 999px;
  background: #F9F5F5;
  font-size: 13px;
  color: #555;
}

.eh-loc-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  padding: 9px 20px;
  border: 2px solid #90191c;
  border-radius: 6px;
  color: #90191c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.eh-loc-more:hover {
  background: #90191c;
  color: #fff;
}

@media (max-width: 960px) {
  .eh-loc-grid { grid-template-columns: repeat(2, 1fr); }
  .eh-loc-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .eh-locations { padding: 48px 16px; }
  .eh-loc-grid { grid-template-columns: 1fr; }
  .eh-loc-title { font-size: 24px; }
  .eh-loc-areas { columns: 1; }
}
