/* ================= HERO ================= */
.renovation-hero {
  position: relative;
  height: 70vh;
  background: url('../Images/renovation/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
  margin-right: 6rem;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===========================
   Renovation Hero Section
   =========================== */

.renovation-hero {
  position: relative;
  height: 88vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .renovation-hero {
    height: 68vh;
  }

  .hero-content {
    padding-right: 1rem;
  }
}


/* ================= DETAIL BOXES ================= */
.renovation-details {
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  margin: 4rem auto;
  padding: 4rem 0;
}

.detail-card {
  width: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

/* Cards grid ONLY */
.details-cards-grid {
  display: grid;
  grid-template-columns:  repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* Section Header */
.details-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.details-section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.section-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-accent),
    transparent
  );
}

.details-section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.details-section-header p {
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}

/* Icon + Title layout */
.details-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.details-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.details-card h3 {
  margin: 0;
}

.detail-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.detail-card ul {
  padding-left: 1.2rem;
}

.detail-card li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .details-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .details-cards-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= PROCESS ================= */
/* ===============================
   Renovation Process Timeline
   =============================== */

.renovation-process {
  background: #ffffff;
  padding: 4rem 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

/* dotted connector line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.process-step {
 display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  z-index: 2;
}

.process-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon img {
  width: 42px;
  height: 42px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.section-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-accent),
    transparent
  );
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0.6rem 0 0.15rem;
  /* margin-top: 0.8rem; */
  /* margin-bottom: 0.3rem; */
  display: block;
  width: 100%;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  /* margin-top: 0.8rem; */
  /* margin-bottom: 0.3rem; */
  display: block;
  width: 100%;
  margin: 0; 
  line-height: 1.35;
}

/* CTA */
.process-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-icon {
    width: 80px;
    height: 80px;
  }
}


/* .process-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.in {
  opacity: 1;
  transform: translateY(0);
} */


/* ================= BEFORE AFTER ================= */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
}

/* ================= CTA ================= */
.renovation-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.renovation-cta h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
}
