/* ── Hero ── */
  .hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(7, 30, 61, 0.92) 0%,
      rgba(11, 53, 98, 0.85) 40%,
      rgba(21, 101, 184, 0.75) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 24px;
  }
  .hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
  }

  :root {
    --navy: #082c4b;
    --navy-dark: #051d33;
    --navy-light: #0f3d65;
    --red: #c6020c;
    --red-dark: #9a0209;
    --white: #ffffff;
    --soft: #f4f7fb;
    --muted: #5b6b7d;
    --border: #e5ecf3;
  }

  html { 
      scroll-behavior: smooth; 
      
  }
 
  /*p { color: var(--muted); line-height: 1.7; }*/

  /* Buttons */
 

  /* Section base */
  .section { padding: 55px 0; }
  .section-soft { background: var(--soft); }
  .section-navy { background: var(--navy); color: #fff; }
  .section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
  .section-navy p { color: rgba(255,255,255,0.78); }


  /* Cards */
  .feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--red));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -20px rgba(8,44,75,0.25);
    border-color: transparent;
  }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card .icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(8,44,75,0.08), rgba(198,2,12,0.08));
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }
  .feature-card h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }
  .feature-card p { font-size: 0.95rem; margin-bottom: 0; }

  /* Sign list */
  .sign-item {
    display: flex; align-items: flex-start; gap: 0.9rem;
    background: #fff; border: 1px solid var(--border);
    padding: 1.1rem 1.2rem; border-radius: 12px;
    transition: all 0.3s ease;
  }
  .sign-item:hover { border-color: var(--red); transform: translateX(4px); }
  .sign-item i {
    color: var(--red); font-size: 1.1rem; margin-top: 0.2rem;
  }
  .sign-item span { color: #1a2738; font-weight: 500; }

  /* Property type pill */
  .pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff; padding: 0.6rem 1.1rem; border-radius: 999px;
    font-weight: 500; font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  .pill:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
  .pill i { color: #ffd6d8; }

  /* Process steps */
  .step-card {
    background: #fff; border-radius: 18px; padding: 2rem 1.8rem;
    border: 1px solid var(--border); height: 100%;
    position: relative; transition: all 0.35s ease;
  }
  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -20px rgba(8,44,75,0.25);
  }
  .step-number {
    position: absolute; top: -22px; left: 1.8rem;
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 12px 24px -8px rgba(8,44,75,0.5);
  }
  .step-card .step-icon {
    color: var(--red); font-size: 1.6rem; margin: 0.5rem 0 1rem;
  }

  /* Why choose */
  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 1.8rem; height: 100%;
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
  }
  .why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(198,2,12,0.5);
    transform: translateY(-5px);
  }
  .why-card .why-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(198,2,12,0.15);
    color: #ff7a82;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
  }
  .why-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

  /* Image card */
  .image-card {
    border-radius: 22px; overflow: hidden;
    box-shadow: 0 35px 70px -25px rgba(8,44,75,0.45);
    position: relative;
  }
  .image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .image-card .badge-float {
    position: absolute; bottom: 22px; left: 22px;
    background: #fff; color: var(--navy);
    padding: 0.8rem 1.2rem; border-radius: 14px;
    font-weight: 700; display: flex; align-items: center; gap: 0.6rem;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.3);
  }
  .image-card .badge-float i { color: var(--red); }

  /* FAQ */
  .accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    margin-bottom: 1rem; overflow: hidden;
    background: #fff;
  }
  .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: var(--navy);
    padding: 1.3rem 1.5rem;
    background: #fff;
  }
  .accordion-button:not(.collapsed) {
    background: rgba(8,44,75,0.04);
    color: var(--navy); box-shadow: none;
  }
  .accordion-button:focus { box-shadow: none; border-color: var(--border); }
  .accordion-body { color: var(--muted); padding: 0 1.5rem 1.4rem; line-height: 1.7; }

  /* Service areas */
  .area-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; color: var(--navy);
    border: 1px solid var(--border);
    padding: 0.7rem 1.2rem; border-radius: 999px;
    font-weight: 600; transition: all 0.3s ease;
  }
  .area-tag:hover {
    background: var(--navy); color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(8,44,75,0.4);
  }
  .area-tag i { color: var(--red); }
  .area-tag:hover i { color: #fff; }

  /* Final CTA */
  .final-cta {
    background:
      linear-gradient(135deg, rgba(8,44,75,0.95), rgba(5,29,51,0.95)),
      url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    border-radius: 28px;
    padding: 4rem 3rem;
    position: relative; overflow: hidden;
  }
  .final-cta::after {
    content: "";
    position: absolute; top: -100px; right: -100px;
    width: 320px; height: 320px; border-radius: 50%;
    
  }
  .final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  .final-cta p { color: rgba(255,255,255,0.85); }
  .contact-line {
    display: flex; align-items: center; gap: 0.8rem;
    color: #fff; margin-bottom: 0.7rem;
    font-weight: 500;
  }
  .contact-line i {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(198,2,12,0.2); color: #ff7a82;
    display: inline-flex; align-items: center; justify-content: center;
  }

  @media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .hero { padding: 5rem 0 4rem; }
    .final-cta { padding: 2.5rem 1.5rem; }
  }