/* HERO */
.about-hero {
  height: 45vh;
  background: url("../images/real-estate/hero-page.jpg") center/cover no-repeat;
  position: relative;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 170px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.hero-content p {
  margin-top: 10px;
  opacity: 0.8;
}
.about-showcase {
  background: var(--accent-bg);
  padding: 120px 20px;
}

.about-container {
  max-width: 1400px;
  margin: auto;
}

/* TOP CONTENT */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 80px;
}

.about-badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold);
  color: #000;
  margin-bottom: 20px;
}

.about-left h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
}

.about-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-right .muted {
  color: #777;
}

.cta-btn {
  margin-top: 20px;
  padding: 14px 22px;
  border-radius: 40px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-btn span {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* IMAGE + CARDS */
.about-image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* CARDS */
.stat-card {
  position: absolute;
  background: #fff;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.stat-card h3 {
  font-size: 36px;
  margin: 0;
}

.stat-card h3 span {
  color: var(--gold);
}

.stat-card p {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
}

/* CARD POSITIONS (same as image style) */
.card-1 {
  top: 60%;
  right: 12%;
}

.card-2 {
  bottom: 5%;
  left: 64%;
}

.card-3 {
  bottom: 5%;
  right: 3%;
}
.journey-section {
  background: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.journey-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.journey-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.journey-header h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}
.journey-scroll {
  height: 100vh;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.journey-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.journey-track {
  display: flex;
  gap: 140px;
  padding: 0 140px;
}

.journey-item {
  min-width: 320px;
  text-align: center;
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.journey-item.is-active {
  opacity: 1;
  transform: scale(1);
}

/* IMAGE + YEAR */
.journey-visual {
  position: relative;
  height: 220px;
}

.journey-year {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  transition: 0.4s ease;
}
.journey-item:hover {
  opacity: 1;
}

.journey-item.is-active .journey-year {
  opacity: 1;
  color: var(--maroon);
  text-shadow: 0 0 25px rgba(139, 26, 74, 0.4);
}

.journey-visual img {
  width: 220px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* DOT */
.journey-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin: 24px auto 16px;
  position: relative;
}

.journey-item.is-active .journey-dot {
  background: var(--maroon);
}

.journey-item.is-active .journey-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(139, 26, 74, 0.5);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  from {
    transform: scale(0.6);
    opacity: 1;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}

.journey-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* LINE */
.journey-line {
  position: absolute;
  bottom: 180px;
  left: 0;
  right: 0;
}

.line-base {
  height: 2px;
  background: #ddd;
}

.line-active {
  height: 2px;
  width: 0%;
  background: var(--gold);
}

/* CTA */
.cta-circle1 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: 0.4s ease;
  position: relative;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-left h2 { font-size: 42px; }
  .stat-card { position: relative; margin: 20px; }
  .hero-content { padding: 100px 24px; }
}

/* ================= PHONE ================= */
@media (max-width: 768px) {
  .about-hero { height: 35vh; }
  .hero-content {
    padding: 80px 20px;
  }
  .hero-content h1 { font-size: 36px; }
  .about-showcase { padding: 80px 16px; }
  .about-left h2 { font-size: 32px; }
  .about-image-wrap { border-radius: 18px; }

  .journey-section { padding: 80px 0; }
  .journey-header h2 { font-size: 36px; }
  .journey-scroll { height: auto; }
  .journey-track {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
    transform: none !important;
  }
  .journey-item {
    width: 100%;
    opacity: 1;
    transform: none;
    margin-bottom: 20px;
  }
  .journey-line { display: none; }
}

/* ================= SMALL PHONE ================= */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .about-left h2 { font-size: 26px; }
  .journey-header h2 { font-size: 28px; }
}
