/*
 * Apartment Movers - page styles
 * Ported like-for-like from Elementor per-widget Custom CSS (post-2852.css).
 * This file is now the source of truth; do not edit in Elementor.
 */

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

.ams-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

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

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

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

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

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

/* 3-column grid — 2 clean rows of 3 */
.ams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 46px;
}

.ams-card {
  background: #fff;
  border-radius: 12px;
  padding: 34px 28px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.ams-card:hover .ams-icon { background: rgba(255,255,255,0.15); }
.ams-card:hover .ams-icon svg { stroke: #c9a656; }
.ams-card:hover .ams-name { color: #fff; }
.ams-card:hover .ams-text { color: rgba(255,255,255,0.85); }

.ams-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 42px;
  color: #f2eded;
  position: absolute;
  top: 14px;
  right: 22px;
  line-height: 1;
  transition: color 0.4s ease;
}

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

.ams-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;
}

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

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

.ams-text {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
  transition: color 0.4s ease;
}

.ams-text a {
  color: #c9a656;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ams-card:hover .ams-text a { color: #f0d080; }

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

.ams-btn-primary {
  display: inline-flex;
  align-items: center;
  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;
}

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

.ams-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  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;
}

.ams-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) {
  .ams-grid { grid-template-columns: repeat(2, 1fr); }
  .ams-title { font-size: 28px; }
}

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

.amw-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Split header */
.amw-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.amw-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

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

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

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

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

/* 2-column feature grid — 3 rows × 2 cols */
.amw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Horizontal feature card */
.amw-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid #ede5e5;
  border-left: 4px solid rgba(201,166,86,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gold accent corner watermark */
.amw-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(201,166,86,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.amw-card:hover {
  border-left-color: #c9a656;
  box-shadow: 0 12px 36px rgba(144,25,28,0.09);
  transform: translateY(-4px);
}

.amw-card:hover::after {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,166,86,0.12) 0%, transparent 70%);
}

/* Icon circle */
.amw-icon {
  width: 54px;
  height: 54px;
  background: #fdf2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

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

.amw-card:hover .amw-icon {
  background: #90191c;
}

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

/* Card text body */
.amw-body { position: relative; z-index: 1; }

.amw-counter {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #c9a656;
  text-transform: uppercase;
  margin: 0 0 8px;
  display: block;
}

.amw-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.amw-card:hover .amw-name { color: #90191c; }

.amw-text {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* Scroll reveal */
.amw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.amw-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .amw-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .amw-line { margin: 16px 0 0; }
  .amw-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .amw-grid { grid-template-columns: 1fr; }

  /* No scroll reveal on mobile */
  .amw-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .amw-wrap { padding: 50px 16px; }
  .amw-title { font-size: 24px; }
  .amw-card { padding: 22px 20px; gap: 16px; }
  .amw-icon { width: 46px; height: 46px; }
}

.amd-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.amd-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: start;
}

/* ── Image column ── */
.amd-img-col {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Offset red bg behind image */
.amd-img-col::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  background: rgba(144,25,28,0.06);
  border-radius: 16px;
  z-index: 0;
}

/* Gold corner frame accent */
.amd-img-col::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #c9a656;
  border-left: 3px solid #c9a656;
  border-radius: 4px 0 0 0;
  z-index: 3;
  pointer-events: none;
}

.amd-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Floating stat card */
.amd-stat {
  position: absolute;
  bottom: 28px;
  left: -16px;
  z-index: 4;
  background: #fff;
  border-left: 4px solid #c9a656;
  border-radius: 10px;
  padding: 16px 20px 16px 18px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
  min-width: 200px;
}

.amd-stat-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 20px;
  color: #90191c;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.amd-stat-label {
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* Gold badge top-right of image */
.amd-badge {
  position: absolute;
  top: 22px;
  right: -10px;
  z-index: 4;
  background: #c9a656;
  color: #fff;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(201,166,86,0.4);
  white-space: nowrap;
}

/* ── Content column ── */
.amd-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

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

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

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

.amd-intro {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ede5e5;
}

/* Numbered item list */
.amd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amd-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #f0e8e8;
  position: relative;
  transition: padding-left 0.3s ease;
}

.amd-item:last-child { border-bottom: none; }

/* Left vertical accent line */
.amd-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: #f0e8e8;
  border-radius: 3px;
  transition: background 0.35s ease, top 0.35s ease, bottom 0.35s ease;
}

.amd-item:hover::before {
  background: #c9a656;
  top: 10px;
  bottom: 10px;
}

/* Icon box */
.amd-item-icon {
  width: 44px;
  height: 44px;
  background: #fdf2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.amd-item-icon svg {
  stroke: #90191c;
  transition: stroke 0.35s ease;
}

.amd-item:hover .amd-item-icon {
  background: #90191c;
}

.amd-item:hover .amd-item-icon svg { stroke: #c9a656; }

.amd-item-body { flex: 1; }

.amd-item-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #c9a656;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.amd-item-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.amd-item:hover .amd-item-title { color: #90191c; }

.amd-item-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* Scroll reveal */
.amd-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.amd-reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.amd-visible {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 960px) {
  .amd-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .amd-img-col::before { display: none; }
  .amd-img-col { position: static; }
  .amd-img { height: 340px; }
  .amd-stat { left: 12px; bottom: 16px; }
  .amd-title { font-size: 26px; }
}

@media (max-width: 768px) {
  .amd-reveal,
  .amd-reveal-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .amd-wrap { padding: 50px 16px; }
  .amd-title { font-size: 22px; }
  .amd-img { height: 260px; }
  .amd-stat { min-width: unset; max-width: 180px; padding: 12px 14px; }
  .amd-stat-num { font-size: 16px; }
  .amd-badge { right: 8px; font-size: 9px; padding: 6px 14px; }
  .amd-item { gap: 14px; padding: 16px 0 16px 16px; }
  .amd-item-icon { width: 38px; height: 38px; }
}

.amp-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.amp-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.amp-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

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

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

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

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

/* Mobile scroll hint */
.amp-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* Table */
.amp-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  margin-bottom: 30px;
  -webkit-overflow-scrolling: touch;
}

.amp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 700px;
}

.amp-table thead tr { background: #90191c; }

.amp-table thead th {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 24px;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}

/* Price column header — highlighted */
.amp-table thead th:nth-child(5) {
  background: rgba(0,0,0,0.18);
}

.amp-table thead th:nth-child(5) .amp-th-sub {
  display: block;
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #c9a656;
  margin-top: 3px;
  text-transform: uppercase;
}

.amp-table tbody tr {
  border-bottom: 1px solid #f2eded;
  transition: background 0.25s ease;
}

.amp-table tbody tr:last-child { border-bottom: none; }

.amp-table tbody tr:hover { background: #fdf8f8; }

.amp-table tbody td {
  padding: 18px 24px;
  font-size: 14px;
  color: #888;
  vertical-align: middle;
}

/* Apartment type — prominent */
.amp-table tbody td:first-child {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Crew + truck + timeline — muted */
.amp-table tbody td:nth-child(2),
.amp-table tbody td:nth-child(3),
.amp-table tbody td:nth-child(4) {
  color: #999;
  font-size: 13.5px;
}

/* Price column — red, persistent tint */
.amp-table tbody td:nth-child(5) {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  color: #90191c;
  background: rgba(144,25,28,0.025);
  white-space: nowrap;
}

.amp-table tbody tr:hover td:nth-child(5) {
  background: rgba(144,25,28,0.055);
}

/* Disclaimer notice */
.amp-note {
  background: #fdf8f5;
  border: 1px solid #edddd0;
  border-left: 4px solid #c9a656;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.amp-note-text { margin: 0; }

.amp-note-text strong {
  display: block;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.amp-note-text span {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.amp-note-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 13px 26px;
  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 #90191c;
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 960px) {
  .amp-title { font-size: 28px; }
  .amp-note { flex-direction: column; align-items: flex-start; }
  .amp-scroll-hint { display: block; }
}

@media (max-width: 600px) {
  .amp-wrap { padding: 50px 16px; }
  .amp-title { font-size: 24px; }
  .amp-note { padding: 22px 20px; }
  .amp-note-btn { width: 100%; justify-content: center; }
}

.amar-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Header */
.amar-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.amar-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

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

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

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

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

/* Dubai block */
.amar-block {
  background: #fff;
  border-radius: 14px;
  padding: 36px 36px 32px;
  border: 1px solid #ede5e5;
  margin-bottom: 20px;
}

.amar-block-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amar-block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ede5e5;
}

.amar-block-heading {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 24px;
}

/* Tag grid */
.amar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amar-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf8f8;
  border: 1px solid #ede5e5;
  border-left: 3px solid rgba(201,166,86,0.35);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 13px;
  color: #444;
  transition: all 0.3s ease;
  cursor: default;
}

.amar-tag svg {
  flex-shrink: 0;
  stroke: #c9a656;
  opacity: 0.8;
  transition: opacity 0.3s ease;

}

.amar-tag:hover {
  border-left-color: #c9a656;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.amar-tag:hover svg { opacity: 1; }

/* Emirates row */
.amar-emirates {
  background: #90191c;
  border-radius: 14px;
  padding: 28px 36px;
}

.amar-emirates .amar-block-label {
  color: rgba(201,166,86,0.9);
}

.amar-emirates .amar-block-label::after {
  background: rgba(255,255,255,0.15);
}

.amar-emirates .amar-block-heading {
  color: #fff;
  margin-bottom: 20px;
}

.amar-tag--emirate {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 3px solid rgba(201,166,86,0.6);
  color: rgba(255,255,255,0.88);
}

.amar-tag--emirate svg { stroke: rgba(201,166,86,0.85); }

.amar-tag--emirate:hover {
  background: rgba(255,255,255,0.18);
  border-left-color: #c9a656;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

/* Scroll reveal */
.amar-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.amar-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .amar-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .amar-title { font-size: 26px; }
  .amar-line { margin: 14px 0 0; }
  .amar-block { padding: 28px 24px; }
  .amar-emirates { padding: 24px 24px; }
}

@media (max-width: 768px) {
  .amar-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .amar-wrap { padding: 50px 16px; }
  .amar-title { font-size: 22px; }
  .amar-tag { font-size: 12.5px; padding: 8px 12px; }
}

.amor-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 70px;
  font-family: 'SF Pro Regular', sans-serif;
}

.amor-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.amor-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

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

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

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

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

/* Timeline grid */
.amor-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
  margin-bottom: 60px;
}

/* Center vertical line */
.amor-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 26px;
  bottom: 26px;
  width: 3px;
  background: linear-gradient(to bottom, #c9a656 0%, #90191c 100%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 3px;
}

.amor-step {
  position: relative;
  padding-bottom: 52px;
}

.amor-step:last-of-type { padding-bottom: 0; }

.amor-step--left {
  grid-column: 1;
  text-align: right;
  padding-right: 52px;
}

.amor-step--right {
  grid-column: 2;
  text-align: left;
  padding-left: 52px;
}

.amor-spacer { padding-bottom: 52px; }

/* Timeline dot */
.amor-dot {
  position: absolute;
  top: 8px;
  width: 52px;
  height: 52px;
  background: #f9f5f5;
  border: 3px solid #c9a656;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.amor-dot::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(201,166,86,0.35);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.amor-dot span {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px;
  color: #90191c;
  transition: color 0.4s ease;
  line-height: 1;
}

.amor-step--left .amor-dot { right: -26px; }
.amor-step--right .amor-dot { left: -26px; }

.amor-step:hover .amor-dot {
  background: #90191c;
  border-color: #90191c;
  box-shadow: 0 0 0 6px rgba(144,25,28,0.1);
}

.amor-step:hover .amor-dot::after {
  border-color: rgba(144,25,28,0.2);
  width: 74px;
  height: 74px;
}

.amor-step:hover .amor-dot span { color: #fff; }

/* Card */
.amor-card {
  background: #f9f5f5;
  border-radius: 12px;
  padding: 30px 28px;
  border: 1px solid #ede5e5;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.amor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c9a656;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}

.amor-step:hover .amor-card {
  box-shadow: 0 12px 36px rgba(144,25,28,0.09);
  border-color: #ddd0d0;
  background: #fff;
}

.amor-card-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 90px;
  color: rgba(144,25,28,0.04);
  position: absolute;
  bottom: -8px;
  right: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.amor-step--right .amor-card-num { right: auto; left: 12px; }

.amor-step:hover .amor-card-num { color: rgba(144,25,28,0.07); }

.amor-card-inner { position: relative; z-index: 1; }

.amor-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 10px;
}

.amor-step-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: #c9a656;
  display: block;
  flex-shrink: 0;
}

.amor-step--left .amor-step-label { flex-direction: row-reverse; }
.amor-step--right .amor-step-label { flex-direction: row; }

.amor-step--left .amor-card-inner { display: flex; flex-direction: column; align-items: flex-end; }
.amor-step--left .amor-step-title,
.amor-step--left .amor-step-text { text-align: right; }

.amor-step-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px !important;
  color: #1a1a1a;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.amor-step:hover .amor-step-title { color: #90191c; }

.amor-step-text {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
  max-width: 400px;
}

.amor-step--left .amor-step-text { margin-left: auto; }

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

.amor-btn-primary {
  display: inline-flex;
  align-items: center;
  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;
}

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

.amor-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  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;
}

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

/* Reveal classes — only active when JS adds amor-js-ready on desktop */
.amor-js-ready .amor-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.amor-js-ready .amor-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.amor-js-ready .amor-reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.amor-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@media (max-width: 768px) {
  .amor-timeline {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    margin-bottom: 48px;
  }
  .amor-timeline::before {
    left: 18px;
    transform: none;
    top: 0;
    bottom: 0;
  }
  .amor-step--left,
  .amor-step--right {
    text-align: left;
    padding-left: 44px;
    padding-right: 0;
    padding-bottom: 36px;
  }
  .amor-step--left .amor-dot,
  .amor-step--right .amor-dot { left: -22px; right: auto; }
  .amor-step--left .amor-card-inner { display: block; align-items: unset; }
  .amor-step--left .amor-step-title,
  .amor-step--left .amor-step-text { text-align: left; }
  .amor-step--left .amor-step-text { margin-left: 0; }
  .amor-step--left .amor-step-label { flex-direction: row; }
  .amor-spacer { display: none; }
  .amor-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .amor-wrap { padding: 50px 16px; }
  .amor-title { font-size: 24px; }
  .amor-card { padding: 24px 20px; }
  .amor-card-num { font-size: 70px; }
  .amor-ctas { flex-direction: column; align-items: center; }
  .amor-btn-primary, .amor-btn-secondary { width: 100%; justify-content: center; }
}