:root {
  --primary-blue: #1d6b8c;
  --deep-blue: #165a74;
  --gold: #239b86;
  --light-gold: #d8efc4;
  --soft-cream: #dde6ef;
  --dark-text: #173c50;
  --muted-text: #5c7180;
  --border: #d3e1e7;
  --white: #ffffff;
  --shadow-soft: 0 16px 34px rgba(29, 107, 140, 0.1);
  --shadow-hover: 0 22px 46px rgba(29, 107, 140, 0.16);
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --hero-tint-a: rgba(22, 90, 116, 0.7);
  --hero-tint-b: rgba(187, 217, 223, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', 'Open Sans', sans-serif;
  color: var(--dark-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1200px 500px at 5% -20%, rgba(216, 239, 196, 0.32), transparent 60%),
    radial-gradient(800px 400px at 95% -10%, rgba(187, 217, 223, 0.22), transparent 65%),
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--soft-cream) 100%);
}

p { margin-bottom: 1rem; }

.container {
  max-width: 1160px;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(100, 173, 216, 0.35);
  outline-offset: 2px;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--deep-blue);
  letter-spacing: 0.01em;
  line-height: 1.12;
}

h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

.display-5,
.display-6 { letter-spacing: -0.02em; }

.text-muted-custom { color: var(--muted-text); }

.lead {
  font-size: 1.06rem;
  color: var(--muted-text);
}

.top-bar {
  background:
    linear-gradient(90deg, rgba(35, 155, 134, 0.98) 0%, rgba(29, 107, 140, 0.98) 58%, rgba(187, 217, 223, 0.96) 100%);
  color: #f4fbff;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.top-bar .container { max-width: 1200px; }

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.65rem;
  flex-wrap: wrap;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

.top-bar a,
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #f4fbff;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 18px rgba(9, 45, 65, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.top-bar i,
.top-bar-item i {
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.top-bar a:hover,
.top-bar-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.top-bar-inner > a:nth-child(1),
.top-bar-inner > a:nth-child(2) {
  background: rgba(9, 52, 67, 0.18);
}

@media (min-width: 992px) {
  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar-inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.42rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .top-bar a,
  .top-bar-item {
    flex: 0 0 auto;
    padding: 0.34rem 0.56rem;
  }
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-shadow: 0 12px 30px rgba(18, 55, 79, 0.04);
}

.navbar.scrolled { box-shadow: 0 14px 32px rgba(16, 24, 40, 0.1); }

.navbar .container {
  gap: 1rem;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.brand-mark {
  display: inline-block;
  width: 58px;
  height: 58px;
  margin-right: 0.45rem;
  border-radius: 999px;
  border: 1px solid #dfe7f1;
  background-color: white;
  background-image: url('../images/winjad-logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 78% auto;
  box-shadow: 0 8px 16px rgba(10, 39, 66, 0.1);
}

.navbar-brand span:last-child { transform: translateY(1px); }

.navbar-toggler {
  border: 1px solid #d7e4f2;
  border-radius: 0.75rem;
  padding: 0.32rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(29, 107, 140, 0.18);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text);
  font-size: 0.95rem;
  padding: 0.48rem 0.85rem !important;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar .btn-gold {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background: rgba(29, 107, 140, 0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.32rem;
  width: auto;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-brand,
.btn-outline-brand,
.btn-gold {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.72rem 1.45rem;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-brand {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
  box-shadow: 0 12px 24px rgba(29, 107, 140, 0.28);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 79, 132, 0.28);
}

.btn-gold {
  color: #1d5b4f;
  border: none;
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  box-shadow: 0 12px 24px rgba(35, 155, 134, 0.22);
}

.btn-gold:hover {
  color: #1a2f47;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(35, 155, 134, 0.28);
}

.btn-outline-brand {
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  background: #fff;
}

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

.section-space { padding: 5.4rem 0; }

main > .section-space:first-child {
  padding-top: 4.2rem;
}

main h2 {
  letter-spacing: -0.01em;
}

main .section-space > .container > p {
  max-width: 68ch;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #eef8f7 42%, #f7fbff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  right: -90px;
  top: -70px;
  width: 360px;
  height: 360px;
  border-radius: 40px;
  transform: rotate(-20deg);
  background: linear-gradient(145deg, rgba(35, 155, 134, 0.2), rgba(29, 107, 140, 0.18));
}

.hero::after {
  content: '';
  position: absolute;
  left: -110px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 36px;
  transform: rotate(-22deg);
  background: linear-gradient(145deg, rgba(216, 239, 196, 0.72), rgba(187, 217, 223, 0.14));
}

.hero-content,
.hero-media { position: relative; z-index: 1; }

.hero .container { max-width: 1180px; }

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.hero .lead {
  max-width: 60ch;
}

.hero .btn-brand,
.hero .btn-outline-brand { min-width: 210px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--deep-blue);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d5e7dd;
  background: #eff9f3;
}

.hero-note {
  margin: 0.9rem 0 0;
  max-width: 52ch;
  color: var(--deep-blue);
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  border: 1px solid #d8e8df;
  background: rgba(255, 255, 255, 0.88);
  color: var(--deep-blue);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(35, 155, 134, 0.08);
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.3rem;
  padding: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.hero-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 1rem;
  filter: saturate(0.94) contrast(1.02);
}

.diagonal-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  transform: skew(-16deg);
  background: var(--gold);
  color: #1b2f47;
  border-radius: 8px;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
}

.diagonal-badge span {
  display: inline-block;
  transform: skew(16deg);
}

.card-elegant {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
  position: relative;
}

.card-elegant:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-elegant .card-body {
  padding: 1.3rem 1.2rem 1.2rem;
}

.card-elegant p:last-child {
  margin-bottom: 0;
}

.card-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card-elegant:hover::before {
  opacity: 1;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-size: 1.2rem;
  background: linear-gradient(145deg, rgba(100, 173, 216, 0.12), rgba(221, 184, 161, 0.18));
}

.icon-wrap.tone-blush { background: linear-gradient(145deg, rgba(216, 239, 196, 0.7), rgba(245, 252, 236, 0.98)); color: #4f846c; }
.icon-wrap.tone-sky { background: linear-gradient(145deg, rgba(187, 217, 223, 0.86), rgba(243, 250, 252, 1)); color: #1d6b8c; }
.icon-wrap.tone-jade { background: linear-gradient(145deg, rgba(194, 235, 224, 0.9), rgba(242, 252, 248, 1)); color: #239b86; }
.icon-wrap.tone-gold { background: linear-gradient(145deg, rgba(216, 239, 196, 0.92), rgba(245, 252, 236, 1)); color: #2b816b; }
.icon-wrap.tone-lilac { background: linear-gradient(145deg, rgba(187, 217, 223, 0.82), rgba(242, 248, 250, 1)); color: #165a74; }
.icon-wrap.tone-coral { background: linear-gradient(145deg, rgba(205, 237, 228, 0.9), rgba(243, 252, 248, 1)); color: #1e836f; }

.service-badge {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d8e7f6;
  background: #eef5fc;
  margin-bottom: 0.8rem;
}

.services-home .services-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: #f2f7fd;
  margin-bottom: 0.7rem;
}

.services-home .services-head h2 {
  letter-spacing: -0.01em;
}

.service-card {
  border: 1px solid #dfe7f1;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 31, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(15, 31, 50, 0.14);
}

.service-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-media.machine-product-frame {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.96), rgba(241, 249, 251, 0.96) 52%, rgba(222, 237, 241, 0.95) 100%);
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 40, 0.04), rgba(9, 24, 40, 0.48));
}

.service-card-media.machine-product-frame::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card-media img.machine-product-img {
  object-fit: contain;
  padding: 0.4rem 0.55rem 0.3rem;
}

.machine-product-hero {
  width: 100%;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.98), rgba(243, 250, 252, 0.98) 54%, rgba(223, 236, 240, 0.95) 100%);
  border: 1px solid #dce9ef;
  box-shadow: 0 18px 32px rgba(32, 78, 115, 0.09);
  padding: 1.4rem;
}

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

.service-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.72rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 40, 71, 0.72);
  backdrop-filter: blur(3px);
}

.service-card-body {
  padding: 1.35rem 1.35rem 1.25rem;
}

.service-card-body h3 {
  margin-bottom: 0.75rem;
}

.service-card-body p {
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.service-link i {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  padding: 0.24rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: #f2f7fd;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-quick-card {
  border: 1px solid #dfe7f1;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 31, 50, 0.07);
  padding: 0.9rem 0.95rem;
}

.contact-quick-card .bi {
  color: var(--primary-blue);
}

.contact-quick-card a {
  text-decoration: none;
  font-weight: 600;
}

.contact-quick-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted-text);
}

.metric-chip {
  border: 1px solid #dfe7f1;
  border-radius: 0.95rem;
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 31, 50, 0.07);
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.metric-chip strong {
  font-size: 1.02rem;
  color: var(--deep-blue);
}

.metric-chip span {
  color: var(--muted-text);
  font-size: 0.85rem;
}

.process-editorial {
  background:
    radial-gradient(900px 260px at 50% -10%, rgba(216, 239, 196, 0.28), transparent 65%),
    var(--soft-cream);
}

.process-editorial-head h2 {
  letter-spacing: -0.015em;
}

.process-editorial-list {
  margin: 2.2rem auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-editorial-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.2rem 1.1rem;
  border: 1px solid #dfe7f1;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 31, 50, 0.08);
  position: relative;
  overflow: hidden;
}

.process-editorial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--gold));
}

.process-editorial-no {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(20, 79, 132, 0.9);
}

.process-editorial-content .h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.faq-home .faq-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: #f2f7fd;
}

.testimonial-card-min {
  border: 1px solid #dfe7f1;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 60%, #fff8f5 100%);
  box-shadow: 0 12px 24px rgba(15, 31, 50, 0.08);
  padding: 1.25rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card-min:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(15, 31, 50, 0.13);
}

.testimonial-signature {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e4ecf5;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-signature span {
  font-size: 0.84rem;
  color: var(--muted-text);
}

.avis-page {
  display: none;
}

.avis-page.is-active {
  display: flex;
}

.avis-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.avis-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.avis-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 44px;
  padding: 0.72rem 0.95rem;
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-blue);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 31, 50, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.avis-page-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 31, 50, 0.1);
}

.avis-page-btn.is-active,
.avis-page-btn[aria-current='page'] {
  background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
  border-color: transparent;
  color: #fff;
}

.avis-page-btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d7e4f2;
  color: var(--primary-blue);
  background: #f2f7fd;
  font-size: 0.78rem;
  font-weight: 700;
}

.faq-card-shell {
  border: 1px solid #dfe7f1;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 26px rgba(15, 31, 50, 0.08);
  padding: 1rem;
}

.faq-home-meta,
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-home-meta span,
.cta-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
}

.faq-home-meta span {
  color: var(--deep-blue);
  border: 1px solid #d3e6df;
  background: #eef8f4;
}

.faq-side-card {
  border: 1px solid #dfe7f1;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 31, 50, 0.08);
  padding: 1.2rem 1.1rem;
  position: sticky;
  top: 108px;
}

.faq-side-card .btn {
  width: 100%;
}

.cta-meta span {
  color: #eef6ff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.split-highlight {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--primary-blue);
}

.steps .step-item {
  position: relative;
  padding-left: 2.2rem;
}

.steps .step-item::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary-blue), var(--deep-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-cream { background: var(--soft-cream); }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.45rem;
  background:
    radial-gradient(500px 220px at 88% 15%, rgba(255, 255, 255, 0.24), transparent 70%),
    linear-gradient(120deg, #3a759f 0%, #4ca0cb 55%, #72c2dd 100%);
  color: #edf5ff;
  box-shadow: 0 22px 42px rgba(10, 37, 64, 0.24);
  border: 1px solid rgba(182, 208, 234, 0.2);
}

.cta-band h2 { color: #fff; }

.cta-band::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(233, 214, 173, 0.28), transparent 68%);
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #eef6ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.24rem 0.72rem;
  margin-bottom: 0.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.cta-actions .btn {
  min-width: 170px;
}

.cta-home .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
}

.cta-home .btn-outline-light:hover {
  color: #0d355c;
  background: #fff;
  border-color: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 3.1rem;
  background: linear-gradient(180deg, rgba(187, 217, 223, 0.24), rgba(221, 230, 239, 0));
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, var(--hero-tint-a), var(--hero-tint-b)),
    var(--hero-image) center/cover no-repeat;
  opacity: 0.82;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 260px at 10% 0%, rgba(236, 217, 178, 0.22), transparent 70%),
    radial-gradient(700px 260px at 90% 100%, rgba(236, 217, 178, 0.16), transparent 70%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #eef6ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.24rem 0.72rem;
  margin-bottom: 0.7rem;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 10px 24px rgba(9, 29, 49, 0.32);
}

.page-hero .text-muted-custom {
  color: rgba(241, 247, 255, 0.92);
}

.page-hero .breadcrumb {
  margin-bottom: 0.6rem;
  --bs-breadcrumb-divider-color: rgba(241, 247, 255, 0.8);
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active {
  color: rgba(241, 247, 255, 0.92);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(241, 247, 255, 0.85);
}

.page-hero .breadcrumb a {
  color: rgba(241, 247, 255, 0.92);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-about { --hero-image: url('../images/section-06.jpg'); }
.page-services { --hero-image: url('../images/section-01.jpg'); }
.page-hijama { --hero-image: url('../images/hero-faq.jpg'); }
.page-acupuncture { --hero-image: url('../images/section-05.jpg'); }
.page-bien-etre { --hero-image: url('../images/wellness-woman-portrait.jpg'); }
.page-contact { --hero-image: url('../images/hero-contact.jpg'); }
.page-tarifs { --hero-image: url('../images/hero-smiling-woman.jpg'); }
.page-faq { --hero-image: url('../images/section-02.jpg'); }
.page-avis { --hero-image: url('../images/alt-woman-smile.jpg'); }
.page-blog { --hero-image: url('../images/section-04.jpg'); }
.page-about { --hero-tint-a: rgba(22, 90, 116, 0.7); --hero-tint-b: rgba(187, 217, 223, 0.38); }
.page-services { --hero-tint-a: rgba(22, 90, 116, 0.74); --hero-tint-b: rgba(187, 217, 223, 0.38); }
.page-hijama { --hero-tint-a: rgba(22, 90, 116, 0.76); --hero-tint-b: rgba(187, 217, 223, 0.34); }
.page-acupuncture { --hero-tint-a: rgba(22, 90, 116, 0.74); --hero-tint-b: rgba(187, 217, 223, 0.36); }
.page-bien-etre { --hero-tint-a: rgba(29, 107, 140, 0.64); --hero-tint-b: rgba(216, 239, 196, 0.34); }
.page-contact { --hero-tint-a: rgba(22, 90, 116, 0.76); --hero-tint-b: rgba(187, 217, 223, 0.34); }
.page-tarifs { --hero-tint-a: rgba(22, 90, 116, 0.7); --hero-tint-b: rgba(216, 239, 196, 0.32); }
.page-faq { --hero-tint-a: rgba(22, 90, 116, 0.76); --hero-tint-b: rgba(187, 217, 223, 0.34); }
.page-avis { --hero-tint-a: rgba(29, 107, 140, 0.66); --hero-tint-b: rgba(216, 239, 196, 0.28); }
.page-blog { --hero-tint-a: rgba(29, 107, 140, 0.66); --hero-tint-b: rgba(216, 239, 196, 0.28); }

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.table-tarifs {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #dfe7f1;
}

.table-tarifs tbody tr:hover { background: #f8fbff; }

.table-tarifs td,
.table-tarifs th {
  padding: 0.9rem 1rem;
  vertical-align: middle;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: #f2f7fd;
  margin-bottom: 0.7rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.pricing-cards-5 {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.pricing-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.price-card {
  border: 1px solid #dfe7f1;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 31, 50, 0.07);
  padding: 1rem 1.05rem;
}

.price-card .h6 {
  margin-bottom: 0.35rem;
}

.price-card strong {
  color: var(--deep-blue);
  font-size: 1.03rem;
}

.price-card p {
  margin: 0.2rem 0 0;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.table-tarifs thead {
  background: linear-gradient(120deg, var(--deep-blue), var(--primary-blue));
  color: #fff;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-feature-card {
  border: 1px solid #dfe7f1;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 31, 50, 0.07);
  padding: 0.95rem;
}

.service-feature-card .bi {
  color: var(--primary-blue);
}

.service-feature-card h3 {
  font-size: 1rem;
  margin: 0.45rem 0 0.35rem;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.article-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d7e4f2;
  color: var(--primary-blue);
  background: #f2f7fd;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.7rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.blog-meta span {
  font-size: 0.79rem;
  color: var(--muted-text);
}

.form-control,
.form-select {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(20, 79, 132, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(20, 79, 132, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #d94848;
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
}

.alert-soft {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
}

.footer {
  background: #183754;
  color: #d7e4f1;
  padding-top: 4.3rem;
}

.footer .container { max-width: 1180px; }

.footer h5,
.footer h6 { color: #fff; }

.footer a {
  color: #d7e4f1;
  text-decoration: none;
}

.footer a:hover { color: var(--light-gold); }

.footer-bottom {
  border-top: 1px solid rgba(215, 228, 241, 0.25);
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 0.9rem;
}

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

.footer .list-unstyled li {
  line-height: 1.7;
}

.footer-rich p {
  color: #d7e4f1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 18px;
  background-color: #fff;
  background-image: url('../images/winjad-logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 82% auto;
  box-shadow: 0 10px 22px rgba(7, 21, 34, 0.22);
}

.footer-brand-text {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.footer-rich .bi {
  color: var(--light-gold);
}

body:not(.page-home) main > .section-space:first-child {
  padding-top: 3.2rem;
}

body:not(.page-home) .card-elegant {
  border-color: #dce6f2;
}

body:not(.page-home) .page-hero {
  margin-bottom: 0.8rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  color: #fff;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  background: linear-gradient(140deg, var(--primary-blue), var(--deep-blue));
  box-shadow: 0 12px 22px rgba(10, 37, 64, 0.28);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-fab {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1020;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.whatsapp-fab:hover {
  color: #fff;
  transform: translateY(-2px);
}

.text-primary { color: var(--primary-blue) !important; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 0.8rem !important;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.accordion-button {
  font-weight: 600;
  color: var(--deep-blue);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--deep-blue);
  background: #f3f8fd;
  box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

.accordion-premium .accordion-item {
  border-color: #dfe7f1;
  box-shadow: 0 8px 18px rgba(15, 31, 50, 0.04);
}

.accordion-premium .accordion-button {
  position: relative;
  padding-right: 3rem;
}

.accordion-premium .accordion-button::after {
  background-size: 0.95rem;
  width: 1rem;
  height: 1rem;
}

.accordion-premium .accordion-body {
  color: #3f5265;
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  border-bottom: 1px solid var(--border);
}

.hero-card,
.card-elegant,
.split-highlight {
  backdrop-filter: saturate(1.04);
}

.img-fluid.rounded-4 {
  filter: saturate(0.94) contrast(1.02);
}

.semantic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.semantic-card {
  border: 1px solid #dfeaf2;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(32, 78, 115, 0.07);
  padding: 1.1rem 1rem;
}

.semantic-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.semantic-card p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.92rem;
}

.whatsapp-only-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 52%, #fff7f4 100%);
}

.wa-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 992px) {
  .page-home .section-cream .row > [class*='col-lg-4']:nth-child(2) .card-elegant {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .section-space { padding: 4.3rem 0; }
  .top-bar-inner {
    justify-content: center;
    gap: 0.5rem 1rem;
  }
  .top-bar a,
  .top-bar-item {
    padding: 0.34rem 0.62rem;
  }
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.9rem;
    border: 1px solid rgba(211, 225, 231, 0.9);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(18, 55, 79, 0.08);
  }
  .navbar-nav {
    gap: 0.3rem;
  }
  .hero-card img { height: 280px; }
  .service-card-media { height: 180px; }
  .process-editorial-list { grid-template-columns: 1fr; }
  .service-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-cards-5,
  .pricing-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .semantic-grid,
  .wa-service-grid { grid-template-columns: 1fr; }
  .process-editorial-item { grid-template-columns: 64px 1fr; }

  .hero .btn-brand,
  .hero .btn-outline-brand { min-width: 0; }
  .cta-actions { justify-content: flex-start; }
  .faq-side-card { position: static; }
}

@media (max-width: 767.98px) {
  .top-bar { font-size: 0.84rem; }
  .top-bar-inner {
    align-items: stretch;
    justify-content: stretch;
  }
  .top-bar a,
  .top-bar-item {
    white-space: normal;
    line-height: 1.3;
    width: 100%;
    justify-content: flex-start;
    padding: 0.42rem 0.72rem;
  }
  .hero { padding-top: 1.6rem; }

  .brand-mark {
    width: 50px;
    height: 50px;
    background-size: 76% auto;
  }

  .whatsapp-fab {
    left: 12px;
    bottom: 72px;
  }

  .hero-tags { gap: 0.45rem; }
  .hero-tags span {
    width: 100%;
    justify-content: center;
  }

  .btn-brand,
  .btn-gold,
  .btn-outline-brand {
    width: 100%;
    margin-bottom: 0.6rem;
  }

  .faq-card-shell {
    padding: 0.8rem;
  }

  .pricing-mini-grid,
  .semantic-grid,
  .wa-service-grid { grid-template-columns: 1fr; }

  .avis-pagination-nav {
    gap: 0.7rem;
  }

  .avis-page-btn {
    padding: 0.64rem 0.84rem;
  }

  .process-editorial-item {
    grid-template-columns: 62px 1fr;
    gap: 0.6rem;
    padding: 0.95rem 0.85rem;
  }
  .process-editorial-no {
    font-size: 1.08rem;
  }
  .process-editorial-content .h4 {
    font-size: 1.12rem;
  }

  body:not(.page-home) .page-hero {
    padding-top: 3.8rem;
    padding-bottom: 2.6rem;
  }
}
