:root {
  --brand-bg: #f8fafc;
  --brand-accent: #4b5563;
  --brand-primary: #0ea5e9;
  --brand-soft: #e2e8f0
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: var(--brand-bg)
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffffcc;
  border-bottom: 1px solid var(--brand-soft)
}

.brand {
  font-weight: 800
}

.btn {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid var(--brand-soft);
  background: #fff;
  cursor: pointer;
  font-size: x-large;
}

.btn.primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary)
}

.card {
  background: #ffffffdd;
  border: 1px solid var(--brand-soft);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px
}

.grid {
  display: grid;
  gap: 16px
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

@media (max-width:860px) {
  .grid.cols-2 {
    grid-template-columns: 1fr
  }
}

.table {
  width: 100%;
  border-collapse: collapse
}

.table th,
.table td {
  padding: 10px;
  border-bottom: 1px solid var(--brand-soft);
  text-align: left
}

.table th {
  background: #f1f5f9
}

.small {
  font-size: 13px;
  color: #475569
}

.input,
input[type='text'],
input[type='email'],
input[type='password'] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--brand-soft);
  border-radius: 10px;
  background: #fff
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media (max-width:760px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px
}

.search-icon-btn {
  background: #fff;
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  cursor: pointer
}

.search-input {
  transition: width .25s ease;
  width: 0;
  overflow: hidden;
  opacity: 0
}

.search-wrap.open .search-input {
  width: 220px;
  opacity: 1
}

/* Maroon accents and spacing tweaks */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.section-title {
  color: var(--brand);
  font-weight: 700;
}

:root {
  --maroon: #7a001f;
  --maroon-d: #5e0017;
}

/* Maroon call pill */
.call-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: x-large;
  padding: 20px 14px;
  background: var(--maroon);
  color: #fff !important;
  border-radius: 10px;
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.call-box:hover,
.call-box:focus {
  background: var(--maroon-d);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.bi {
  font-size: x-large;
}

:root {
  --brand-maroon: #7a001f;
  --brand-maroon-dark: #5e0017;
  --card-radius: 14px;
  --card-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.section-heading {
  font-weight: 800;
  color: var(--brand-maroon);
  letter-spacing: .3px;
}

/* Card */
.feature-card {
  background: #8f010148;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--card-radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  border-color: rgba(170, 0, 43, 0.473);
}

/* Icon circle */
.fc-icon {
  width: 64px;
  height: 64px;
  display: grid;
  background-color: #008516bd;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid rgb(4, 122, 0);
}

.fc-icon i {
  font-size: 30px;
  color: white;
}

/* Titles & text */
.fc-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 8px;
}

.fc-text {
  color: #3d3d3d;
  margin: 0;
  line-height: 1.7;
}

/* Responsive polish */
@media (max-width: 768px) {
  .feature-card {
    padding: 22px 18px;
  }

  .fc-title {
    font-size: 18px;
  }
}

/* brand maroon (deep) */
:root {
  --maroon: #7a001f;
}

/* ===== Lock brand colors & layout ONLY for this section ===== */
#docs-apostille {
  --maroon: #7a001f;
  /* set/restore your maroon here */
}

/* Heading stays maroon */
#docs-apostille .docs-heading {
  color: var(--maroon) !important;
  font-weight: 800;
}

/* Two columns (>=768px), compact gaps */
#docs-apostille .docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 6px;
  align-items: start;
}

/* List typography + ensure text color */
#docs-apostille .doc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#docs-apostille .doc-list li {
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  /* keep body text dark */
}

/* Check icons stay maroon regardless of theme overrides */
#docs-apostille .doc-list i {
  color: var(--maroon) !important;
  font-size: 1.4rem;
  margin-top: .4rem;
}

/* Put Apostille image right after the RIGHT list, still 2 columns */
#docs-apostille .docs-grid>.apostille-img {
  grid-column: 2;
  /* right column */
  justify-self: end;
  /* align to right edge */
  margin-top: 6px;
}

/* Stack to one column only on small phones */
@media (max-width: 767.98px) {
  #docs-apostille .docs-grid {
    grid-template-columns: 1fr;
  }

  #docs-apostille .docs-grid>.apostille-img {
    grid-column: 1;
    justify-self: center;
    margin-top: 8px;
  }
}

:root {
  --maroon: #7a001f;
}

#about-apostille .section-heading {
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: .2px;
}

#about-apostille p {
  color: #111;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

#about-apostille .leadish {
  font-size: 1.12rem;
  /* slightly larger first paragraph */
}

#about-apostille .wide-photo img {
  display: block;
  width: 100%;
  height: auto;
  /* keep natural height */
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  object-fit: cover;
  /* safe if you later set a fixed height */
}

/* Optional: if you want a fixed hero-like image height on large screens
#about-apostille .wide-photo img{
  height:320px; object-fit:cover;
}
*/

@media (max-width: 576px) {
  #about-apostille p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

:root {
  --maroon: #7a001f;
}

#services .section-heading {
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: .2px;
}

/* Grid wrapper mimics one big box with inner separators */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  /* inner lines handle separation */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  overflow: hidden;
}

/* Each card */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 260px;
  padding: 26px 22px;
  text-align: center;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}

/* remove right borders at end of each row */
.service-item:nth-child(3n) {
  border-right: 0;
}

/* remove bottom borders on last row */
.service-item:nth-last-child(-n+3) {
  border-bottom: 0;
}

/* Image */
.service-item img {
  width: 210px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

/* Title */
.service-item h3 {
  margin: 18px 0 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--maroon);
}

/* Hover effect */
.service-item:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(122, 0, 31, .16);
}

/* ========== Responsive ========== */
@media (max-width: 991.98px) {

  /* md–lg tablets: 2 per row */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, .08);
  }

  /* reset */
  .service-item:nth-child(2n) {
    border-right: 0;
  }

  .service-item:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  /* reset */
  .service-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {

  /* phones: 1 per row */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: 0;
  }

  .service-item:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .service-item img {
    width: 85%;
    height: 140px;
  }
}

:root {
  --accent: #8e0e15;
  /* maroon for STEP text */
  --title-color: #7b0f17;
  /* maroon for headings */
  --dot-color: #b9b9b9;
  /* dotted line color */
  --gap: 14px;
}

.steps {
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  margin: 28px 0 36px;
}

.step-head {
  display: flex;
  align-items: baseline;
  /* aligns STEP with text baseline like your screenshot */
  gap: var(--gap);
}

.step-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--title-color);
}

/* The dotted “……..” line */
.step-dots {
  flex: 1 1 auto;
  height: 0;
  /* no height, just a bottom border */
  border-bottom: 2px dotted var(--dot-color);
  transform: translateY(-4px);
  /* nudge to visually center on the baseline */
}

/* Right side “STEP 1” */
.step-num {
  white-space: nowrap;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* Body copy */
.step p {
  margin: 12px 0 0;
  line-height: 1.7;
  font-size: 16px;
  color: #1f2937;
}

/* Responsive: stack on small screens */
@media (max-width: 640px) {
  .step-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .step-dots {
    order: 2;
    width: 100%;
    transform: translateY(-2px);
  }

  .step-num {
    order: 3;
    font-size: 22px;
  }

  .step-title {
    font-size: 22px;
  }
}
@media (max-width: 640px){
  .step-no{ font-size: 22px; }
}

/* centered dots like your screenshot */
#reviewCarousel .rv-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d4d9;
  border: 0;
  margin: 0 4px;
}

#reviewCarousel .rv-dots .active {
  background: #4285f4;
}
/* Fix left scrollbar being blocked by the wide prev/next overlay */
#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next{
  pointer-events: none;   /* let content (your left scrollbar) receive events */
  width: 0;               /* collapse Bootstrap’s ~15% wide hit strip */
}

#reviewCarousel .carousel-control-prev .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next .carousel-control-next-icon{
  pointer-events: auto;   /* keep the icons themselves clickable */
}

/* (optional) nudge icons a bit outside for easier tapping */
#reviewCarousel .carousel-control-prev{ left: -6px; }
#reviewCarousel .carousel-control-next{ right: -6px; }

/* google logo at top-right */
.rv-card {
  position: relative;
}

.rv-g {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
}

/* avatar styles */
.rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.rv-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c2185b;
  color: #fff;
  font-weight: 700;
}

/* stars (mask) */
.rv-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
}

.rv-stars span {
  width: 16px;
  height: 16px;
  background: #dadce0;
  display: inline-block;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') center/contain no-repeat;
}

.rv-stars[data-rating="5"] span:nth-child(-n+5) {
  background: #fbbc04;
}

/* fixed card height + scrollable text
     (scrollbar on LEFT using RTL trick) */
.rv-text {
  font-size: 14px;
  line-height: 1.5;
  max-height: 120px;
  overflow: auto;
}

.rv-left-scroll {
  direction: rtl;
}

/* scrollbar shifts to left */
.rv-left-scroll .rv-scroll-inner {
  direction: ltr;
  display: block;
  /* keep text left-aligned */
}
/* === Sticky CALL bar (exact, full-width, centered) === */
:root{ --callbar-h: 56px; }

.sticky-call{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--callbar-h);
  background: #5b0007;             /* dark maroon like your screenshot */
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2147483647;              /* above everything */
  box-shadow: 0 -2px 10px rgba(0,0,0,.25);
}

.sticky-call a{
  color: #fff; text-decoration: none;
  font-weight: 800; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: .6rem;
  /* scales like your big centered text */
  font-size: clamp(16px, 2.2vw, 28px);
}

/* ensure page content isn’t hidden behind the bar */
body{ padding-bottom: var(--callbar-h); }

/* iPhone safe-area */
.sticky-call{ padding-bottom: max(0px, env(safe-area-inset-bottom)); }
/* Lift floating CTA above the sticky call bar */
.floating-cta{
  bottom: calc(var(--callbar-h, 56px) + 16px) !important; /* 16px gap above bar */
  z-index: 2147483648 !important;                          /* above the bar */
  /* keep your existing right:16px etc. */
}

/* (optional) respect iPhone safe area */
@supports (bottom: env(safe-area-inset-bottom)){
  .floating-cta{
    bottom: calc(var(--callbar-h, 56px) + env(safe-area-inset-bottom) + 16px) !important;
  }
}
.ia-counter.plus::after {
  content: "+";
  margin-left: 2px; /* small gap */
}
