/* =========================================================
   CHX Services — Premium Design System (Gatre-inspired)
   ========================================================= */

:root {
  --color-primary: #1b4d3e;
  --color-primary-dark: #143d32;
  --color-primary-light: #2d6a4f;
  --color-accent: #e85d04;
  --color-accent-hover: #d04f00;
  --color-lime: #8bc34a;
  --color-surface: #f5f7f6;
  --color-surface-alt: #eef2f0;
  --color-white: #ffffff;
  --color-text: #2c3e36;
  --color-text-muted: #6b7c74;
  --color-border: #dce5e0;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow: 0 8px 30px rgba(27, 77, 62, 0.08);
  --shadow-lg: 0 16px 48px rgba(27, 77, 62, 0.12);
  --header-h: 80px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; color: var(--color-text-muted); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 10000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary,
.btn-chx {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff !important;
}
.btn-primary:hover,
.btn-chx:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff !important;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: #fff;
  color: #fff !important;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--color-primary) !important;
}

.btn-outline-chx {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}
.btn-outline-chx:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--color-white);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(27, 77, 62, 0.12);
}

.top-bar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.45rem 0;
}
.top-bar a { color: rgba(255, 255, 255, 0.85); }
.top-bar a:hover { color: #fff; }
.top-bar .social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 0.35rem;
  font-size: 0.75rem;
}

.navbar {
  padding: 0.85rem 0;
  min-height: var(--header-h);
}
.navbar-toggler {
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.55rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.15);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827, 77, 62, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-brand img {
  height: 44px;
  width: auto;
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-text) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary) !important;
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  min-width: 240px;
}
.dropdown-item {
  padding: 0.55rem 1.25rem;
  font-weight: 450;
  color: var(--color-text);
}
.dropdown-item:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  position: relative;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.header-icon:hover {
  background: var(--color-primary);
  color: #fff;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.btn-book {
  background: var(--color-accent);
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

/* ---------- Search Panel ---------- */
.search-panel {
  position: fixed;
  inset: 0;
  background: rgba(20, 61, 50, 0.92);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.search-panel.open {
  opacity: 1;
  visibility: visible;
}
.search-panel-inner {
  width: min(640px, 90%);
  position: relative;
}
.search-panel input {
  width: 100%;
  padding: 1.1rem 3.5rem 1.1rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-family: var(--font-body);
}
.search-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  cursor: pointer;
}
.search-results {
  margin-top: 1rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.search-result-item {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.search-result-item:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}
.search-empty {
  padding: 1rem 1.25rem;
  margin: 0;
  color: var(--color-text-muted);
}

/* ---------- Section helpers ---------- */
.section {
  padding: 5rem 0;
}
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 6rem 0; }
.bg-surface { background: var(--color-surface); }
.bg-primary-section { background: var(--color-primary); color: #fff; }
.bg-primary-section h2,
.bg-primary-section h3,
.bg-primary-section p { color: #fff; }
.bg-primary-section p { opacity: 0.9; }

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-label.light { color: var(--color-lime); }

.section-title {
  margin-bottom: 1rem;
}
.section-desc {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-desc { margin-bottom: 2.5rem; }

/* ---------- Home Hero ---------- */
.home-hero {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 40px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -80px;
  right: 10%;
  pointer-events: none;
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 24px solid rgba(139, 195, 74, 0.08);
  border-radius: 50%;
  bottom: 40px;
  left: 5%;
  pointer-events: none;
}
.home-hero .sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.25rem;
}
.home-hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.home-hero .brand-signal {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-lime);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.home-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle {
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-circle-accent {
  position: absolute;
  width: min(380px, 85%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px dashed rgba(232, 93, 4, 0.4);
  z-index: 1;
  transform: translate(20px, 20px);
}

/* ---------- Page Hero (inner) ---------- */
.page-hero {
  background: var(--color-primary);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(139, 195, 74, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 35%);
  pointer-events: none;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-nav a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { opacity: 0.5; }
.page-hero-img {
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.2);
  margin-left: auto;
  position: relative;
  z-index: 2;
  margin-bottom: -80px;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- About collage ---------- */
.about-collage {
  position: relative;
  padding-bottom: 2rem;
}
.about-collage .img-main {
  width: 75%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-collage .img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-collage .img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.about-collage .img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.experience-badge {
  position: absolute;
  left: 8%;
  bottom: 15%;
  background: var(--color-accent);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 3;
}
.experience-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}
.experience-badge span {
  font-size: 0.8rem;
  font-weight: 500;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--color-text);
  font-weight: 450;
}
.check-list li i {
  color: var(--color-primary);
  background: rgba(27, 77, 62, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ---------- Service cards ---------- */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 77, 62, 0.1);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .icon-wrap {
  background: var(--color-primary);
  color: #fff;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--color-accent); }
.service-card p {
  flex-grow: 1;
  font-size: 0.95rem;
}
.service-card .learn-more {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.service-card .learn-more:hover { color: var(--color-accent); }

/* ---------- Process steps ---------- */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(27, 77, 62, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--color-primary-dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l2 8h8l-6.5 5 2.5 8L30 21l-6.5 5 2.5-8L19 13h8z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.stat-item i {
  font-size: 2rem;
  color: var(--color-lime);
  margin-bottom: 0.75rem;
  display: block;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card .product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-card .product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-cat {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.product-card h3 a { color: inherit; }
.product-card .product-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin: 0.5rem 0 1rem;
}
.product-card .product-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ---------- Project / portfolio cards ---------- */
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(20, 61, 50, 0.92));
  padding: 1.5rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.project-overlay h4 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}
.project-overlay span {
  font-size: 0.85rem;
  opacity: 0.8;
}
.project-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-link:hover {
  background: #fff;
  color: var(--color-primary);
}

/* ---------- Team cards ---------- */
.team-card {
  text-align: center;
}
.team-card .team-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 3/4;
}
.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}
.team-card .role {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.team-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  margin: 0 0.2rem;
  font-size: 0.85rem;
}
.team-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}
.testimonial-card .stars {
  color: #f5a623;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card .quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  color: var(--color-primary-dark);
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.15);
  outline: none;
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}
.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--color-lime);
}
.form-label {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.field-error,
.invalid-feedback {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.form-success {
  display: none;
  border-radius: var(--radius-sm);
}
.form-success.show { display: block; }

.estimate-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.estimate-form h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-info-item p { margin: 0; }

/* ---------- Blog cards ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card .blog-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-date {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-card .blog-body {
  padding: 1.5rem;
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--color-accent); }

/* ---------- FAQ ---------- */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary-dark);
  background: #fff;
  box-shadow: none !important;
  padding: 1.1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  background: var(--color-surface);
  color: var(--color-primary);
}
.accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  width: auto;
  height: auto;
  transform: none !important;
}
.accordion-button:not(.collapsed)::after {
  content: "−";
}
.accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-muted);
}

/* ---------- Cart ---------- */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.cart-item-price {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text);
}
.qty-btn:hover {
  background: var(--color-surface);
  border-color: var(--color-primary);
}
.cart-item-qty input {
  width: 48px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.35rem;
  font-family: var(--font-body);
}
.cart-item-subtotal {
  font-weight: 700;
  color: var(--color-primary);
  min-width: 70px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem;
}
.cart-item-remove:hover { color: #dc3545; }

.cart-summary {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.cart-summary .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
}

.cart-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius);
}
.cart-success.show { display: block; }
.cart-success i {
  font-size: 3.5rem;
  color: var(--color-lime);
  margin-bottom: 1.25rem;
}
.cart-success h2 { color: var(--color-primary); }

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}
.cart-empty i {
  font-size: 3rem;
  color: var(--color-border);
  margin-bottom: 1rem;
}

.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-detail-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0;
}
.qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 1rem;
}
.qty-wrap input {
  width: 56px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.55rem;
  font-family: var(--font-body);
}
[data-cart-feedback] {
  opacity: 0;
  color: var(--color-primary);
  font-weight: 600;
  transition: opacity 0.3s;
  margin-top: 0.75rem;
}
[data-cart-feedback].show { opacity: 1; }

/* ---------- Feature boxes ---------- */
.feature-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.feature-box .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.feature-box p { margin: 0; font-size: 0.95rem; }

/* ---------- Legal pages ---------- */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}
.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.4rem; }

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.partner-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ---------- Footer ---------- */
.footer-cta {
  background: var(--color-primary-dark);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.footer-cta h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-cta p { color: rgba(255, 255, 255, 0.8); margin-bottom: 0; }
.newsletter-inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-inline .form-control {
  flex: 1;
  min-width: 200px;
}

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
  position: relative;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.site-footer p { color: rgba(255, 255, 255, 0.75); }
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer a:hover { color: #fff; }
.footer-logo {
  height: 42px;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: "›";
  color: var(--color-lime);
  font-weight: 700;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}
.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.9rem;
}
.footer-bottom a { margin-left: 1rem; }
.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-newsletter .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-newsletter .input-group {
  display: flex;
  gap: 0;
}
.footer-newsletter .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ---------- Service detail ---------- */
.benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--transition);
}
.benefit-card:hover {
  background: var(--color-primary);
}
.benefit-card:hover h4,
.benefit-card:hover p,
.benefit-card:hover i { color: #fff; }
.benefit-card i {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}
.benefit-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.benefit-card p { margin: 0; font-size: 0.95rem; }

.related-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.related-card img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.related-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.related-card h4 a { color: inherit; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0 auto 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.75rem;
  }
  .navbar-nav .nav-link.active::after { display: none; }
  .header-actions .btn-book { display: none; }
  .page-hero-img {
    margin: 2rem auto -60px;
  }
  .about-collage .img-main { width: 100%; }
  .about-collage .img-secondary {
    position: relative;
    width: 70%;
    margin-top: -3rem;
    margin-left: auto;
  }
  .experience-badge {
    left: auto;
    right: 5%;
    bottom: auto;
    top: 10%;
  }
  .cart-item {
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
  }
  .cart-item-qty,
  .cart-item-subtotal,
  .cart-item-remove {
    grid-column: 2;
  }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
  .home-hero { padding: 3.5rem 0 3rem; min-height: auto; }
  .hero-circle { margin-top: 2rem; }
  .top-bar { display: none; }
  .stat-item { margin-bottom: 1.5rem; }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .text-md-end {
    margin-top: 0.75rem;
  }
  .footer-bottom a { margin: 0 0.5rem; }
  .newsletter-inline { flex-direction: column; }
}

@media (max-width: 575.98px) {
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item-img { width: 100%; height: 160px; }
  .partner-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-accent { color: var(--color-accent) !important; }
.text-primary-chx { color: var(--color-primary) !important; }
.bg-lime-soft { background: rgba(139, 195, 74, 0.12); }
.rounded-chx { border-radius: var(--radius); }
.shadow-chx { box-shadow: var(--shadow); }

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
