/* CONTAINER */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  border-bottom: 0px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('images/sell-house.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 110px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
}

/* FORM BOX */
.form-box {
  max-width: 420px;
  margin: 30px auto 0;
  padding: 25px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* IMPORTANT FIX: override glass class */
.glass {
  background: #fff !important;
  backdrop-filter: none !important;
}

.form-box input {
  width: 100%;
  padding: 13px;
  margin: 10px 0;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: #ff6a00;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 85px 0;
}

.section.light {
  background: #ffffff;
}

.section.grey {
  background: #eef2f7;
}

.section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* icon-card FIX (your HTML uses it) */
.icon-card {
  font-size: 16px;
}

.icon-card h3 {
  margin-top: 10px;
}

/* hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* TIMELINE */
.timeline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   SECTION BASE (IMPORTANT FIX)
========================= */
.section {
  padding: 5px 0;
  position: relative;
}

.section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 55px;
  letter-spacing: -0.5px;
  color: #1E3A5F;
}

/* =========================
   WHY US (LIGHT SECTION)
   CLEAN + PREMIUM WHITE DESIGN
========================= */
.section.light {
  background: #ffffff;
}

/* soft top/bottom separation */
.section.light {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

/* subtle hero-like accent line */


/* =========================
   PROCESS (GREY SECTION)
   MODERN CARD GRID FEEL
========================= */
.section.grey {
  background: linear-gradient(180deg, #f6f8fc 0%, #eef2f7 100%);
}

/* soft floating background blob */
.section.grey::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ff6a00;
  opacity: 0.04;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(20px);
}

/* =========================
   GRID FIX (MORE SPACING)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* =========================
   CARD (MAKE IT PREMIUM)
========================= */
/* =========================
   ICON CARD (WHY US TILE)
========================= */
.card.icon-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;

  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift + depth */
.card.icon-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =========================
   ICON STYLE (BIG IMPACT FIX)
========================= */
.card.icon-card .icon {
  font-size: 26px;
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px auto;

  background: linear-gradient(135deg, #ff6a00, #ffb37a);
  color: white;

  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

/* heading */
.card.icon-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: #111827;
}

/* text */
.card.icon-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* =========================
   TOP ACCENT LINE
========================= */
.card.icon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ffb37a);
  transform: translateX(-50%);
  transition: 0.4s ease;
}

.card.icon-card:hover::before {
  width: 100%;
}

/* =========================
   TIMELINE (FIXED UX)
========================= */
.timeline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
  color: #222;
}

/* step pills */
.timeline div {
  background: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;

  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

  transition: all 0.25s ease;
}

/* hover = active step feel */
.timeline div:hover {
  background: #ff6a00;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.25);
}

/* =========================
   CTA INSIDE PROCESS SECTION
========================= */
.process-section {
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
  font-size: 32px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  position: relative;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Optional connecting line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #ddd;
  z-index: 0;
}

.step {
  z-index: 1;
}

/* CTA Styling */
.sell-cta {
  margin-top: 60px;
  padding: 30px;
  background: #111111;
  color: #ffffff;
  border-radius: 12px;
}

.sell-cta button {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: #f5b400;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.step p {
  color: #6B7280;
}

.step h4 {
  color: #111;
}


.sell-cta h3 {
  color: #ffffff;
}

.sell-cta p {
  color: #D1D5DB;
  /* soft gray for readability */
}

.sell-cta button {
  background: #F5B400;
  /* gold */
  color: #000;
}

.cta-sub {
  color: #9CA3AF;
  font-size: 14px;
  margin-top: 5px;
}

.cta-trust {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 10px;
}