:root {
  --teal: #0F5C4D;          /* Primary Deep Green */
    --teal-dark: #062E26;     /* Dark Forest Green */
    --teal-light: #E7F5EF;    /* Soft Mint Background */

    --gold: #BDD00F;          /* Logo Neon Lime */
    --gold-light: #F3F8D0;    /* Light Lime Shade */

    --white: #FFFFFF;         /* Pure White */

    --text-dark: #121212;     /* Premium Black Text */
    --text-mid: #5B6763;      /* Muted Gray Green */

    --border: #D8E7DF; 
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

/* navbar */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid #e8e8e8;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--teal) !important;
  font-weight: 700;
}

.navbar-brand span {
  color: var(--gold);
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #444 !important;
  padding: 8px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: #1d6a6a !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.btn-enquire {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.btn-enquire:hover {
  background: var(--gold) !important;
  color: #f0f0f0;
}

/* service page */

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-image: url("my-img/subbanner.webp");
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 46, 46, 0.88) 0%,
    rgba(15, 46, 46, 0.5) 60%,
    rgba(15, 46, 46, 0.1) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 0;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.bg-ivory {
  background: var(--ivory);
}

.bg-ivory2 {
  background: var(--ivory2);
}

/* ── Service Cards (icon-based, no images) ── */
.svc-card {
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: #fff;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.25s;
  height: 100%;
}

.svc-card:hover {
  border-left-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(58, 73, 106, 0.11);
}

.svc-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.25s;
}

.svc-card:hover .svc-icon-wrap {
  background: var(--teal-light);
}

.svc-icon-wrap i {
  font-size: 26px;
  color: var(--teal);
  transition: color 0.25s;
}

.svc-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--teal);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid #fff;
}

.svc-body {
  flex: 1;
}

.svc-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.svc-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 12px;
}

.svc-tags span {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px 2px 0 0;
}

.process-step {
  text-align: center;
  padding: 20px 10px;
}

.process-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-icon i {
  font-size: 28px;
  color: var(--teal);
}

.process-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 28px;
  background: #fff;
  height: 100%;
  transition: all 0.25s;
  position: relative;
}

.price-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(29, 106, 106, 0.12);
}

.price-card.featured {
  border-color: var(--teal);
  background: var(--teal);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.price-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.price-amt {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}

.price-feature {
  font-size: 14px;
  color: #555;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-feature:last-of-type {
  border-bottom: none;
}

.price-feature i {
  color: var(--teal);
  font-size: 15px;
}

.accordion-button {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a !important;
  background: #fff !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--teal) !important;
}

.accordion-item {
  border: 1px solid #e8e8e8 !important;
  border-radius: 8px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.cta-strip {
  background: var(--teal);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
}

.btn-gold:hover {
  background: #b8923e;
  color: #fff;
}

.btn-outline-w {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
/* FOOTER */

