/* ============================================================
   homepointzone.com — Custom Styles
   Simple, neat CSS that works with Bootstrap 5 grid
   ============================================================ */
:root {
  --brand: #b85c2a;
  --brand-dark: #8c421c;
  --brand-light: #f6e3d3;
  --navy: #1e2a38;
  --navy-soft: #2c3e52;
  --cream: #faf5ee;
  --sage: #4a7c59;
  --gold: #e9a13b;
  --muted: #6b7a8d;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(30, 42, 56, 0.10);
  --shadow-hover: 0 20px 44px rgba(184, 92, 42, 0.18);
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #334155;
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.25;
}

a { text-decoration: none; }
img { max-width: 100%; }

/* ---------- Navbar ---------- */
.topbar {
  background: var(--navy);
  color: #dbe4ee;
  font-size: 0.85rem;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--gold); }

.navbar-brand { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--navy) !important; font-size: 1.35rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; margin-right: 0.5rem;
}
.navbar .nav-link { font-weight: 600; color: var(--navy); margin: 0 0.15rem; border-radius: 8px; padding: 0.5rem 0.8rem !important; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--brand); background: var(--brand-light); }

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--brand); color: #fff; font-weight: 700;
  border-radius: 50px; padding: 0.7rem 1.7rem; border: 2px solid var(--brand);
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline-brand { border: 2px solid var(--brand); color: var(--brand); font-weight: 700; border-radius: 50px; padding: 0.65rem 1.6rem; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; font-weight: 700; border-radius: 50px; padding: 0.7rem 1.7rem; border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-soft); color: #fff; border-color: var(--navy-soft); }
.btn { transition: all 0.25s ease; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 85% -5%, rgba(233,161,59,0.25), transparent 60%),
    radial-gradient(700px 380px at 5% 10%, rgba(184,92,42,0.14), transparent 60%),
    linear-gradient(180deg, #fdf8f1 0%, #fff 100%);
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid #f0ddd0; color: var(--brand);
  font-weight: 700; font-size: 0.85rem; border-radius: 50px; padding: 0.4rem 1rem;
  box-shadow: 0 4px 14px rgba(184,92,42,0.12);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
.hero h1 .accent { color: var(--brand); font-style: italic; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img { border-radius: 24px; box-shadow: var(--shadow); }
.hero-card {
  position: absolute; bottom: -18px; left: -12px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 0.9rem 1.2rem; border-left: 5px solid var(--sage);
}
.hero-card strong { color: var(--navy); }
.trust-pills span {
  display: inline-block; background: #fff; border: 1px solid #e8e2d8;
  border-radius: 50px; padding: 0.35rem 0.95rem; margin: 0.2rem;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, #3b2c22 100%);
  color: #fff; padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,161,59,0.35), transparent 70%);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cbd5e1; }
.breadcrumb-custom { font-size: 0.9rem; color: #cbd5e1; }
.breadcrumb-custom a { color: var(--gold); font-weight: 600; }

/* ---------- Sections ---------- */
.section-pad { padding: 4rem 0; }
.section-cream { background: var(--cream); }
.section-title { font-weight: 700; margin-bottom: 0.5rem; }
.section-sub { color: var(--muted); max-width: 640px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem;
  font-weight: 800; color: var(--brand);
}

/* ---------- Service cards ---------- */
.service-card {
  background: #fff; border: 1px solid #f0e8dc; border-radius: var(--radius);
  padding: 1.8rem 1.5rem; height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 1; }
.icon-badge {
  width: 56px; height: 56px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1rem;
  background: var(--brand-light); color: var(--brand);
}
.icon-badge.green { background: #e2efe5; color: var(--sage); }
.icon-badge.navy { background: #e3e9f2; color: var(--navy); }
.icon-badge.gold { background: #fbeed3; color: #9a6b12; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; }
.service-card p { font-size: 0.95rem; color: var(--muted); }
.card-link { font-weight: 700; color: var(--brand); }
.card-link:hover { color: var(--brand-dark); }

/* ---------- Service detail blocks ---------- */
.service-block { padding: 3rem 0; border-bottom: 1px dashed #e5dccf; }
.service-block:last-child { border-bottom: none; }
.service-block img { border-radius: 20px; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 0.35rem 0 0.35rem 2rem; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.35rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: #e2efe5; color: var(--sage);
  font-weight: 800; font-size: 0.8rem; text-align: center; line-height: 24px;
}

/* ---------- Process steps ---------- */
.step-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem 1.4rem;
  border: 1px solid #eee4d6; height: 100%; text-align: center;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  color: #fff; font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff; border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid #eee4d6; height: 100%;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; }
.testimonial footer { color: var(--muted); font-size: 0.9rem; margin-top: 0.8rem; }

/* ---------- Blog ---------- */
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid #eee4d6; height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card img { height: 200px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 1.4rem; }
.blog-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--brand-light); color: var(--brand);
  border-radius: 50px; padding: 0.2rem 0.8rem; margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1.15rem; }
.blog-meta { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, #4a2c18 100%);
  border-radius: 24px; color: #fff; padding: 3rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: "⌂"; position: absolute; right: 1rem; bottom: -3rem;
  font-size: 12rem; opacity: 0.07; line-height: 1;
}
.cta-banner h2 { color: #fff; }

/* ---------- Newsletter box ---------- */
.newsletter-box {
  background: linear-gradient(135deg, #fff7ec, #fbeed3);
  border: 2px dashed var(--gold); border-radius: 20px; padding: 2.2rem;
}

/* ---------- Forms ---------- */
.form-control, .form-select { border-radius: 12px; padding: 0.7rem 1rem; border: 1.5px solid #e2d9c8; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 0.2rem rgba(184,92,42,0.15); }
.contact-card { background: #fff; border: 1px solid #eee4d6; border-radius: var(--radius); padding: 1.5rem; height: 100%; }
.contact-card .icon-badge { margin-bottom: 0.6rem; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; border-radius: 20px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #cbd5e1; }
footer.site-footer h5 { color: #fff; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem; }
footer.site-footer a { color: #cbd5e1; }
footer.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }

/* ---------- Misc ---------- */
.faq-accordion .accordion-button:not(.collapsed) { background: var(--brand-light); color: var(--brand-dark); font-weight: 700; }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--brand-light); }
#backToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--brand); color: #fff; font-size: 1.3rem; display: none;
  box-shadow: var(--shadow);
}
#backToTop:hover { background: var(--brand-dark); }
.legal-content h2 { margin-top: 2rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.2rem; }
.divider-craft { height: 4px; width: 72px; border-radius: 4px; background: linear-gradient(90deg, var(--brand), var(--gold)); margin: 0.8rem 0 1.2rem; }


.blog-content img{
  width: 100%;

}

.blog-content p{
  text-align: justify;
}

.navbar-brand img{
  width: 240px;
}