/* Esha Home Care Services — custom styles */
:root {
  --brand: #0d6b6b;
  --brand-dark: #084848;
  --brand-soft: #e6f4f4;
  --accent: #ca642e;
  --ink: #1a2b2b;
  --muted: #5a6e6e;
  --paper: #f7faf9;
  --line: #d4e4e4;
  --white: #ffffff;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
.brand-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— Top header ——— */
.top-header {
  background: #062e2e;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  padding: 0.55rem 0;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-header-contact,
.top-header-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.top-header-contact {
  gap: 0;
}

.top-header-contact li {
  display: flex;
  align-items: center;
}

.top-header-contact li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.95rem;
}

.top-header-contact a,
.top-header-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.2;
}

.top-header-contact a:hover {
  color: var(--white);
}

.top-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.top-header-social {
  gap: 0.4rem;
  margin-left: auto;
}

.top-header-social a {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.top-header-social a:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 767.98px) {
  .top-header {
    padding: 0.55rem 0;
    font-size: 0.78rem;
  }

  .top-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .top-header-contact {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
  }

  .top-header-contact li {
    flex: 1 1 50%;
    min-width: 0;
    justify-content: center;
  }

  .top-header-contact li:not(:last-child)::after {
    display: none;
  }

  .top-header-contact li:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-header-contact li:last-child {
    display: none;
  }

  .top-header-contact a {
    font-size: 0.75rem;
    gap: 0.35rem;
    white-space: nowrap;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-icon {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.62rem;
  }

  .top-header-social {
    display: none;
  }
}

@media (max-width: 400px) {
  .top-header-contact a {
    font-size: 0.68rem;
  }
}

/* ——— Navbar ——— */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.site-nav .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark) !important;
  line-height: 1.1;
}

.site-nav .navbar-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.site-nav .nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--brand) !important;
}

.site-nav .btn-nav {
  background: var(--brand);
  color: var(--white) !important;
  border: none;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
}

.site-nav .btn-nav:hover {
  background: var(--brand-dark);
  color: var(--white) !important;
}

/* Mobile side menu (offcanvas) */
.site-nav .navbar-toggler {
  border: 1px solid #c5d0d0;
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav .navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--brand);
}

.site-nav .navbar-toggler-icon {
  width: 1.15rem;
  height: 1.15rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235a6e6e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-offcanvas {
  max-width: 300px;
  border: none;
}

.mobile-offcanvas .offcanvas-header {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.mobile-offcanvas .offcanvas-header .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark) !important;
  line-height: 1.1;
  margin: 0;
}

.mobile-offcanvas .offcanvas-header .navbar-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.mobile-offcanvas .offcanvas-body {
  padding: 1.5rem 1.35rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-offcanvas .nav-link {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-dark) !important;
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid var(--line);
}

.mobile-offcanvas .nav-link:hover,
.mobile-offcanvas .nav-link.active {
  color: var(--brand) !important;
}

.mobile-offcanvas .btn-nav {
  background: var(--brand);
  color: var(--white) !important;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  align-self: flex-start;
  display: inline-block;
  text-align: center;
}

.mobile-offcanvas .btn-nav:hover {
  background: var(--brand-dark);
  color: var(--white) !important;
}

.mobile-menu-social {
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  width: 100%;
}

.mobile-menu-social p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.mobile-menu-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mobile-menu-social a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-social a:hover {
  background: var(--brand);
  color: var(--white);
}

.mobile-offcanvas .btn-close:focus {
  box-shadow: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(8, 72, 72, 0.88) 0%, rgba(13, 107, 107, 0.72) 45%, rgba(13, 107, 107, 0.45) 100%),
    url("../asset/img/silder/3.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-inner {
  padding: 5rem 0 4.5rem;
  max-width: 640px;
  width: 100%;
}

.hero .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.hero-inner > p:not(.brand-mark) {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}

.hero-actions .btn {
  text-align: center;
  white-space: nowrap;
}

.btn-primary-custom {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-weight: 560;
  font-size: 0.95rem;
  border-radius: 4px;
}

.btn-primary-custom:hover {
  background: #a84a1c;
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
}

@media (max-width: 575.98px) {
  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-inner {
    padding: 3.5rem 0 2.75rem;
    max-width: none;
  }

  .hero .brand-mark {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .hero-inner > p:not(.brand-mark) {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    display: block;
    padding: 0.85rem 1rem;
  }

  .home-about .about-visual,
  .about-page .about-visual {
    min-height: 360px;
    padding: 0.85rem;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .home-about .about-visual-img,
  .about-page .about-visual-img {
    object-position: center 18%;
    animation: none;
  }

  .home-about .about-visual::after,
  .about-page .about-visual::after {
    background: linear-gradient(180deg, transparent 55%, rgba(8, 72, 72, 0.35) 100%);
  }

  .home-about .about-visual-inner,
  .about-page .about-visual-inner {
    max-width: 72%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.92);
  }

  .home-about .about-visual-inner strong {
    font-size: 1.75rem;
  }

  .about-page .about-visual-inner strong {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .home-about .about-visual-inner span,
  .about-page .about-visual-inner span {
    font-size: 0.78rem;
    line-height: 1.35;
    display: block;
  }

  .home-about-actions {
    width: 100%;
  }

  .home-about-actions .btn {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
  }

  .home-about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-brand {
  background: var(--brand);
  border: none;
  color: var(--white);
  padding: 0.7rem 1.6rem;
  font-weight: 500;
  border-radius: 4px;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.btn-outline-brand {
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  padding: 0.7rem 1.6rem;
  font-weight: 500;
  border-radius: 4px;
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: var(--white);
}

/* ——— Page header ——— */
.page-header {
  background:
    linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.page-header h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-weight: 700;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 0 1.25rem;
}

/* ——— Feature / service blocks ——— */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(8, 72, 72, 0.1);
  border-top-color: var(--accent);
}

.service-item .icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--brand-soft), #d7ecec);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-item:hover .icon-wrap {
  background: var(--brand);
  color: var(--white);
}

.service-item h3,
.service-detail h2,
.value-item h3,
.why-list h4,
.testimonial-item .author {
  color: var(--accent);
}

.service-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 3.25rem;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .service-detail-reverse .service-detail-media {
    order: 2;
  }

  .service-detail-reverse .service-detail-body {
    order: 1;
  }
}

.service-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--brand-soft);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.04);
}

.service-detail-body {
  padding: 0.25rem 0;
}

.service-detail .num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  opacity: 0.35;
  margin-bottom: 0.35rem;
}

.service-detail h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.service-detail ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.service-detail ul li {
  margin-bottom: 0.35rem;
}

/* ——— Why us ——— */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.why-list h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.why-list p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.about-visual {
  position: relative;
  min-height: 480px;
  height: 100%;
  overflow: hidden;
  background: var(--brand-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}

.about-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: aboutZoom 18s ease-in-out infinite alternate;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 72, 72, 0.55) 100%);
  pointer-events: none;
}

.about-visual-inner {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 1.5rem;
  max-width: 280px;
  margin: 0;
  box-shadow: 0 12px 32px rgba(8, 72, 72, 0.12);
}

.about-visual-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brand);
  line-height: 1;
}

.about-visual-inner span {
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes aboutZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (max-width: 991.98px) {
  .about-visual {
    min-height: 380px;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .about-visual-img {
    object-position: center 20%;
  }

  .about-visual::after {
    background: linear-gradient(180deg, transparent 50%, rgba(8, 72, 72, 0.4) 100%);
  }

  .about-visual-inner {
    max-width: 240px;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.94);
  }

  .about-visual-inner strong {
    font-size: 1.85rem;
  }

  .about-page .about-visual-inner strong {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .about-visual-inner span {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* ——— Home about ——— */
.home-about .about-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.home-about .section-lead,
.home-about-text {
  max-width: none;
  width: 100%;
  text-align: left;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.home-about .section-title {
  max-width: none;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.home-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 0;
  background: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .home-about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.home-about-stats .stat-item {
  text-align: center;
  padding: 1.85rem 1.25rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 72, 72, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-about-stats .stat-item::before {
  display: none;
}

.home-about-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(8, 72, 72, 0.12);
  background: var(--white);
  border-color: var(--line);
}

.home-about-stats .stat-item:not(:last-child)::after {
  display: none;
}

.home-about-stats .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  border: none;
}

.home-about-stats .stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--brand-dark);
  line-height: 1.05;
  margin-bottom: 0.45rem;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.home-about-stats .stat-item > span:last-child {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

/* ——— About slider ——— */
.about-slider-section {
  background:
    linear-gradient(180deg, #eef6f6 0%, var(--paper) 100%);
}

.about-slider {
  position: relative;
  margin-top: 0.5rem;
}

.about-slide {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 480px;
  background: var(--white);
  overflow: hidden;
}

.about-slide-reverse {
  direction: rtl;
}

.about-slide-reverse > * {
  direction: ltr;
}

.about-slide-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.about-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}

.carousel-item.active .about-slide-media img {
  transform: scale(1);
  animation: aboutZoom 14s ease-in-out infinite alternate;
}

.about-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.about-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(165deg, var(--white) 0%, #f3f9f9 100%);
}

.about-slide-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-slide-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.about-slide-content > p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
  max-width: 38ch;
}

.about-slide-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.about-slide-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-slide-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--brand);
}

.about-slider-indicators {
  position: static;
  margin: 1.5rem 0 0;
  gap: 0.5rem;
}

.about-slider-indicators [data-bs-target] {
  width: 2.25rem;
  height: 3px;
  border: none;
  border-radius: 0;
  background: var(--line);
  opacity: 1;
  text-indent: 0;
}

.about-slider-indicators .active {
  background: var(--brand);
}

.about-slider-control {
  width: auto;
  opacity: 1;
  top: auto;
  bottom: 1.35rem;
}

.about-slider .carousel-control-prev {
  left: auto;
  right: 5.5rem;
}

.about-slider .carousel-control-next {
  right: 1.25rem;
}

.about-slider-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 1.1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-slider-control:hover .about-slider-arrow {
  background: var(--accent);
  transform: translateY(-2px);
}

.carousel-item .about-slide-content {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}

.carousel-item.active .about-slide-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .about-slide,
  .about-slide-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: 0;
  }

  .about-slide-media {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .about-slide-media img {
    position: absolute;
  }

  .about-slider .carousel-control-prev,
  .about-slider .carousel-control-next {
    display: none;
  }
}

/* ——— Testimonials ——— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-wrap .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-wrap .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  text-align: left;
}

.testimonial-slider .testimonial-item {
  margin: 0;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slider .carousel-item {
  transition: transform 0.5s ease-in-out;
}

.testimonial-arrow {
  width: 2.75rem;
  opacity: 1;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slider .carousel-control-prev {
  left: 0;
  right: auto;
}

.testimonial-slider .carousel-control-next {
  right: 0;
}

.testimonial-arrow-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 1.25rem;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover .testimonial-arrow-btn,
.testimonial-arrow:focus .testimonial-arrow-btn {
  background: var(--accent);
  transform: scale(1.05);
}

.testimonial-actions {
  margin-top: 1.75rem;
}

.testimonial-item {
  background: var(--white);
  border-left: 3px solid var(--brand);
  padding: 1.75rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(8, 72, 72, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-slider .carousel-item.active .testimonial-item {
  animation: testimonialIn 0.55s ease;
}

@keyframes testimonialIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-item .quote {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.testimonial-item .author {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-item .role {
  color: var(--muted);
  font-size: 0.85rem;
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

@media (max-width: 575.98px) {
  .testimonial-slider {
    padding: 0 2.75rem;
  }

  .testimonial-arrow-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.05rem;
  }
}

/* ——— Work process ——— */
.process-section {
  position: relative;
  isolation: isolate;
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(4, 36, 36, 0.88) 0%, rgba(8, 72, 72, 0.78) 50%, rgba(13, 107, 107, 0.72) 100%),
    url("../asset/img/silder/2.avif") center/cover no-repeat;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 20%, rgba(196, 92, 38, 0.22), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.process-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.65rem;
}

.process-eyebrow span {
  color: #f0b48a;
}

.process-header h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.process-header p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
  }
}

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  animation: processRise 0.7s ease both;
  animation-delay: calc(var(--step) * 0.08s);
}

.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 180, 138, 0.65);
}

.process-num {
  position: absolute;
  right: 0.85rem;
  top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.process-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 92, 38, 0.9);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(196, 92, 38, 0.28);
}

.process-step h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin: 0;
  max-width: 38ch;
  position: relative;
  z-index: 1;
}

.process-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-process {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #d46a2e 0%, #a84a1c 100%);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 12px 28px rgba(168, 74, 28, 0.35);
}

.btn-process:hover {
  color: var(--white);
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(168, 74, 28, 0.45);
}

@keyframes processRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .process-section {
    padding: 3.5rem 0;
  }

  .process-step {
    padding: 1.45rem 1.2rem 1.35rem;
  }
}
.faq-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(6, 46, 46, 0.72) 0%, rgba(8, 72, 72, 0.58) 45%, rgba(13, 107, 107, 0.5) 100%),
    url("../asset/img/silder/2.avif") center/cover no-repeat;
  background-attachment: scroll;
}

.faq-section::before {
  content: none;
}

.faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.faq-wrap .section-title {
  color: var(--accent);
}

.faq-wrap .section-title,
.faq-wrap .section-lead {
  text-align: left;
}

.faq-wrap .section-lead {
  margin-bottom: 2rem;
}

.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  width: 100%;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  margin: 0;
  border-radius: 0;
}

.faq-accordion .accordion-item:first-of-type {
  border-top: 1px solid var(--line);
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 560;
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  background: transparent;
  box-shadow: none !important;
  border: none;
  border-radius: 0 !important;
  padding: 1.25rem 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-dark);
  background: transparent;
  box-shadow: none !important;
  padding: 1.25rem 0;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent;
  outline: none;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0;
  background-image: none !important;
  content: "+" !important;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
  transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−" !important;
  background-image: none !important;
  transform: none !important;
}

.faq-accordion .accordion-body {
  padding: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: none;
}

/* ——— Contact ——— */
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
}

.contact-info-block {
  margin-bottom: 1.75rem;
}

.contact-info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.contact-info-block p,
.contact-info-block a {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 107, 107, 0.15);
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-message.show {
  display: block;
}

.map-embed {
  width: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--brand-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

@media (min-width: 768px) {
  .map-embed iframe {
    height: 450px;
  }
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(6, 46, 46, 0.92) 0%, rgba(13, 107, 107, 0.82) 100%),
    url("../asset/img/silder/1.png") center/cover no-repeat;
  color: var(--white);
  padding: 4.25rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(196, 92, 38, 0.22);
  z-index: -1;
  animation: ctaPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
  from { transform: scale(0.9); opacity: 0.55; }
  to { transform: scale(1.15); opacity: 0.9; }
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Footer ——— */
.site-footer {
  background: #062e2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.92rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem !important;
}

.footer-social li {
  margin-bottom: 0 !important;
}

.footer-social a {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ——— Values / about extras ——— */
.about-page .page-header p,
.about-page .section p,
.about-page .section-lead,
.about-page .value-item p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-page .section-title {
  text-align: left;
  color: var(--accent);
}

.about-page .section-lead {
  max-width: none;
}

.about-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background:
    linear-gradient(145deg, #084848 0%, #0d6b6b 55%, #147878 100%);
  border: none;
  box-shadow: 0 16px 36px rgba(8, 72, 72, 0.16);
  min-height: 280px;
}

.about-cta-panel h3 {
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}

.about-cta-panel p {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 34ch;
  margin: 0 auto 1.5rem;
  text-align: center !important;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-cta-actions .btn-outline-custom:hover {
  background: var(--white);
  color: var(--brand-dark);
}

.value-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 576px) {
  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .value-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.value-item {
  padding: 1.5rem 0;
  border-top: 2px solid var(--brand);
  width: 100%;
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.4rem;
}

.policy-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--white);
}
.mobile-offcanvas,
.mobile-offcanvas.showing,
.mobile-offcanvas.hiding,
.offcanvas-backdrop {
  transition: none !important;
}

/* ——— Floating contact buttons ——— */
.float-contact {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.float-btn:hover {
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  filter: brightness(1.06);
}

.float-call {
  background: #1a56c4;
}

.float-whatsapp {
  background: #25d366;
}

.float-email {
  background: #c62828;
}

@media (max-width: 575.98px) {
  .float-contact {
    right: 0.75rem;
    bottom: 1rem;
    gap: 0.55rem;
  }

  .float-btn {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.2rem;
  }
}
