* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* subtle dim */
  z-index: 1;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  max-height: 1200px;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0; /* behind overlay and text */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  border-radius: 8px;
  z-index: 2; /* above overlay */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 4px 3px 11px #000000;
}

.hero p {
  font-size: 1.2rem;
}

/* Full-width info section with light blue background */
.info {
  width: 100%;
  background: #d1e0ef; /* light blue */
}

/* Content wrapper (keeps text readable while background spans full width) */
.info__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  color: #0e2a47; /* darker text for contrast on light blue */
}

.info h2 {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.25rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.info p {
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
  line-height: 1.7;
  /* max-width: 70ch; */
  font-size: 24px !important;
}

#info-title {
  font-size: 48px !important;
  font-weight: 400 !important;
}

.process-step {
  width: 100%;
  background: white;
  padding: 2rem 1rem;
}

.process-step__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.process-step__badge {
  --size: 100px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #d1e0ef; /* light blue */
  color: #09090b;
  font-size: 48px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__content h3 {
  font-size: 48px;
  margin: 0 0 0.5rem 0;
  color: #0e2a47;
}

.process-step__content p {
  font-size: 20px !important;
  line-height: 1.5;
  color: #71717a;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .process-step__container {
    flex-direction: column;
    text-align: center;
  }
}

.process-step-alt {
  width: 100%;
  background: #d1e0ef; /* dark background for contrast */
  padding: 2rem 1rem;
}

.process-step-alt__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.process-step-alt__badge {
  --size: 100px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: white; /* keep light blue badge for consistency */
  color: #09090b; /* dark text inside */
  font-size: 48px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-alt__content h3 {
  font-size: 48px;
  margin: 0 0 0.5rem 0;
  color: #ffffff; /* white text for contrast */
}

.process-step-alt__content p {
  font-size: 24px;
  line-height: 1.5;
  color: #d9e3f0; /* lighter grayish text for readability */
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .process-step-alt__container {
    flex-direction: column;
    text-align: center;
  }
}

/* TEST */
/* Full-width hero */
.coming-soon {
  position: relative;
  width: 100%;
  min-height: clamp(60vh, 70vh, 80vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://promadehomes.com/wp-content/uploads/2025/08/Image.jpg")
    center/cover no-repeat;
  color: white;
  overflow: hidden;
}

/* Dark overlay */
.coming-soon__overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  background: rgba(149, 168, 168, 0.2);
  z-index: 1;
}

/* Inner content */
.coming-soon__inner {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

/* Title styling */
.coming-soon h1 {
  font-size: clamp(32px, 4vw + 12px, 56px);
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  color: white;
}

/* Subtitle styling */
.coming-soon__subtitle {
  font-size: 24px !important;
  color: #e4e4e7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 4rem;
}

/* Gentle three-dot ellipsis */
.coming-soon__dots {
  display: inline-block;
  width: 1.5em;
  color: #e4e4e7;
  text-align: left;
}
.coming-soon__dots::after {
  content: "…";
  animation: dots 1.6s steps(4, end) infinite;
  display: inline-block;
}
@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .coming-soon__dots::after {
    animation: none;
    content: "...";
  }
}

@media (max-width: 768px) {
  .coming-soon {
    min-height: 40vh; /* shorter height for tablets and phones */
  }
}

@media (max-width: 480px) {
  .coming-soon {
    min-height: 30vh; /* even shorter for very small devices */
  }
}

/* Description */
.coming-soon__desc {
  font-size: 18px !important;
  color: #f0f4f8;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.coming-soon__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dp {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  background: #244769;
  color: #fafafa;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.3);
}

.btn-dp:hover {
  color: #d4d4d8;
  text-decoration: none;
}
