/* ============ 1. SERVICES INDEX PAGE ============ */
.services-index-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 24px;
}

/* When used inside hero-section, hero-container handles spacing */
.hero-section.page-hero {
  padding: 0;
  max-width: none;
  min-height: 30vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-section.page-hero .hero-container {
  padding: 40px 32px 36px;
  width: 100%;
}

.hero-section.page-hero h1.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px !important;
}

.hero-section.page-hero .hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 16px !important;
}

.hero-section.page-hero .hero-caption {
  margin-bottom: 16px;
}

.hero-section.page-hero .glow-top-right {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
}

.hero-section.page-hero .glow-bottom-left {
  width: 280px;
  height: 280px;
  bottom: -100px;
  left: -100px;
}

.hero-section.page-hero .hero-actions .btn-primary-aqua,
.hero-section.page-hero .hero-actions .btn-primary-ink,
.hero-section.page-hero .hero-actions .btn-secondary-outline {
  height: 44px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Layout adjustment when there is no booking wizard in the page hero */
.hero-section.page-hero .hero-container:not(:has(.hero-right)) {
  display: block;
}

.hero-section.page-hero .hero-container:not(:has(.hero-right)) .hero-left {
  max-width: 800px;
}

.hero-section.page-hero .hero-container:not(:has(.hero-right)) .hero-subtitle,
.hero-section.page-hero .hero-container:not(:has(.hero-right)) .hero-subtitle p {
  max-width: 100% !important;
}

.services-index-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.services-index-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 18px;
}

.services-index-header .subtitle {
  font-size: 18px;
  color: rgba(13, 35, 49, 0.65);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.services-index-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-index-content .service-row-card {
  background: #fff;
  border: var(--border-card);
  border-radius: 24px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  align-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-index-content .service-row-card:hover {
  border-color: rgba(20, 180, 198, 0.5);
  box-shadow: 0 18px 40px rgba(13, 35, 49, 0.08);
}

.services-index-content .service-row-card .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--color-tint);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.services-index-content .service-row-card .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-index-content .service-row-card .service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
  color: var(--color-ink);
  text-decoration: none;
  display: block;
}

.services-index-content .service-row-card .service-name:hover {
  color: var(--color-teal);
}

.services-index-content .service-row-card .service-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(13, 35, 49, 0.6);
  text-wrap: pretty;
}

.services-index-content .service-row-card .rate-chart-link {
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}

.services-index-content .service-row-card .includes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-index-content .service-row-card .includes-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(13, 35, 49, 0.7);
}

.services-index-content .service-row-card .includes-check {
  color: var(--color-aqua);
  font-weight: 800;
}

.services-index-content .service-row-card .pricing-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.services-index-content .service-row-card .price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}

.services-index-content .service-row-card .time-badge {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(13, 35, 49, 0.45);
  background: var(--color-paper);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}

.services-index-content .service-row-card .btn-book-service {
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.services-index-content .service-row-card .btn-book-service:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.services-index-content .price-disclaimer {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.45);
  margin: 10px 4px 0;
}


/* ============ 2. SERVICE DETAIL PAGE ============ */
.service-detail-header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px 16px;
}

.service-detail-header .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.5);
  margin-bottom: 24px;
}

.service-detail-header .breadcrumbs a {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.service-detail-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.service-detail-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 20px;
}

.service-detail-header .intro-text {
  font-size: 17px;
  color: rgba(13, 35, 49, 0.68);
  line-height: 1.7;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.service-detail-header .actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-detail-header .btn-book-now {
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-detail-header .btn-book-now:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.btn-subtle-link {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.btn-subtle-link:hover {}

.service-detail-cost-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 32px 24px;
}

.service-detail-cost-section .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.service-detail-cost-section .cost-chart-card {
  background: #fff;
  border: var(--border-card);
  border-radius: 20px;
  overflow: hidden;
}

.service-detail-cost-section .chart-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 26px;
  background: var(--color-ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-detail-cost-section .chart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 26px;
  border-top: 1px solid rgba(13, 35, 49, 0.07);
  align-items: center;
}

.service-detail-cost-section .chart-row-item {
  font-size: 14.5px;
  color: rgba(13, 35, 49, 0.75);
}

.service-detail-cost-section .chart-row-rate {
  font-weight: 700;
  font-size: 15px;
}

.service-detail-cost-section .chart-disclaimer {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.45);
  margin: 14px 4px 0;
}

/* ============ 3. ARTICLES LISTING PAGE ============ */
.articles-index-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 24px;
}

.articles-index-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.articles-index-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 18px;
}

.articles-index-header .subtitle {
  font-size: 18px;
  color: rgba(13, 35, 49, 0.65);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.articles-index-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 96px;
}

.articles-index-content .articles-grid,
.related-articles-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.articles-index-content .article-card,
.related-articles-section .article-card {
  background: #fff;
  border: var(--border-card);
  border-radius: 22px;
  padding: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.articles-index-content .article-card:hover,
.related-articles-section .article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 35, 49, 0.1);
  border-color: rgba(20, 180, 198, 0.5);
}

.articles-index-content .article-card .category-chip,
.related-articles-section .article-card .category-chip {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  background: var(--color-tint);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.articles-index-content .article-card .article-title,
.related-articles-section .article-card .article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0;
}

.articles-index-content .article-card .article-excerpt,
.related-articles-section .article-card .article-excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(13, 35, 49, 0.6);
  text-wrap: pretty;
  margin: 0;
}

.articles-index-content .article-card .card-footer,
.related-articles-section .article-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}

.articles-index-content .article-card .read-time,
.related-articles-section .article-card .read-time {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.45);
}

.articles-index-content .article-card .arrow-accent,
.related-articles-section .article-card .arrow-accent {
  color: var(--color-aqua);
  font-weight: 800;
  font-size: 18px;
}


/* ============ 4. ARTICLE DETAIL PAGE ============ */
.article-detail-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 16px;
}

.article-detail-content.has-sidebar {
  max-width: 1200px;
}

.article-detail-content .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.5);
  margin-bottom: 24px;
}

.article-detail-content .breadcrumbs a {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.article-detail-content .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.article-detail-content .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 16px;
}

.article-detail-content .metadata {
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.5);
  margin-bottom: 36px;
}

.article-detail-content p,
.article-detail-content li,
.article-detail-content p.article-body-p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(13, 35, 49, 0.78);
  margin: 0 0 22px;
  text-wrap: pretty;
}

.callout-cta-box {
  margin: 32px auto 0;
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-ink);
  border-radius: 22px;
  padding: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.callout-cta-box .box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 6px;
}

.callout-cta-box .box-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.callout-cta-box .btn-cta-professional {
  background: var(--color-aqua);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.callout-cta-box .btn-cta-professional:hover {
  background: #fff;
}


/* ============ 5. ABOUT PAGE ============ */
.about-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 56px;
}

.about-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.about-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 26px;
  max-width: 900px;
}

.about-header .title span.highlight {
  color: var(--color-aqua);
}

.about-header .desc {
  font-size: 18px;
  color: rgba(13, 35, 49, 0.68);
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}

.about-stats-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 56px;
}

.about-stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.about-stats-section .stat-card-dark {
  background: var(--color-ink);
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stats-section .stat-card-dark .number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--color-aqua);
}

.about-stats-section .stat-card-dark .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.about-stats-section .stat-card-white {
  background: #fff;
  border: var(--border-card);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stats-section .stat-card-white .number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--color-teal);
}

.about-stats-section .stat-card-white .label {
  font-size: 14px;
  color: rgba(13, 35, 49, 0.6);
}

.about-stats-section .stat-card-tint {
  background: var(--color-tint);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stats-section .stat-card-tint .number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--color-teal);
}

.about-stats-section .stat-card-tint .label {
  font-size: 14px;
  color: rgba(13, 35, 49, 0.6);
}

.about-values-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.about-values-section .values-photo {
  width: 100%;
  height: 420px;
  background: var(--color-tint);
  border: var(--border-card);
  border-radius: 28px;
}

.about-values-section .values-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-values-section .value-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-values-section .value-number {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 14px;
  background: var(--color-tint);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.about-values-section .value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}

.about-values-section .value-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(13, 35, 49, 0.62);
  text-wrap: pretty;
}


/* ============ 6. BULK & B2B PAGE ============ */
.b2b-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 24px;
}

.b2b-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.b2b-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 820px;
}

.b2b-header .subtitle {
  font-size: 18px;
  color: rgba(13, 35, 49, 0.65);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.b2b-header .btn-custom-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.b2b-header .btn-custom-quote:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.b2b-perks-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px 24px;
}

.b2b-perks-section .perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.b2b-perks-section .perk-box {
  background: #fff;
  border: var(--border-card);
  border-radius: 20px;
  padding: 26px;
}

.b2b-perks-section .perk-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.b2b-perks-section .perk-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(13, 35, 49, 0.6);
  text-wrap: pretty;
}

.b2b-rates-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 24px;
}

.b2b-rates-section .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.b2b-rates-section .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.b2b-rates-section .rates-table-wrapper {
  background: #fff;
  border: var(--border-card);
  border-radius: 24px;
  overflow-x: auto;
}

.b2b-rates-section .table-header {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 18px 28px;
  background: var(--color-ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  min-width: 720px;
}

.b2b-rates-section .table-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid rgba(13, 35, 49, 0.07);
  align-items: center;
  min-width: 720px;
}

.b2b-rates-section .row-segment {
  font-weight: 700;
  font-size: 15px;
}

.b2b-rates-section .row-items {
  font-size: 14px;
  color: rgba(13, 35, 49, 0.6);
}

.b2b-rates-section .row-unit {
  font-size: 14px;
  color: rgba(13, 35, 49, 0.6);
}

.b2b-rates-section .row-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-teal);
}

.b2b-rates-section .row-min {
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.5);
}

.b2b-rates-section .rates-disclaimer {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.45);
  margin: 14px 4px 0;
}

.b2b-contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}

.b2b-contact-section .contact-panel {
  background: var(--color-ink);
  border-radius: 32px;
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.b2b-contact-section .panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.b2b-contact-section .panel-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.b2b-contact-section .actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b2b-contact-section .btn-whatsapp-quote {
  background: var(--color-aqua);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.b2b-contact-section .btn-whatsapp-quote:hover {
  background: #fff;
}

.b2b-contact-section .btn-call-quote {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 100px;
  text-decoration: none;
}

.b2b-contact-section .btn-call-quote:hover {
  border-color: #fff;
}


/* ============ 7. BOOKING FLOW PAGE ============ */
.booking-page-wrapper {
  flex: 1;
  background: linear-gradient(180deg, #F7F5F0 0%, #EFF6F6 100%);
}

.booking-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.booking-container .step-header {
  text-align: center;
  margin-bottom: 32px;
}

.booking-container .step-header .caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.booking-container .step-header .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  margin: 0;
}

.booking-container .help-info-bar {
  background: #fff;
  border: var(--border-card);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.booking-container .help-info-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(13, 35, 49, 0.65);
}

.booking-container .help-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-container .btn-help-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-tint);
  color: var(--color-teal);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-container .btn-help-whatsapp:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.booking-container .btn-help-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(13, 35, 49, 0.14);
}

.booking-container .btn-help-call:hover {}

.booking-container .progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.booking-container .progress-dot {
  height: 6px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.3s ease;
}

.booking-container .progress-dot.active {
  width: 44px;
  background: var(--color-aqua);
}

.booking-container .progress-dot.inactive {
  width: 22px;
  background: rgba(13, 35, 49, 0.12);
}

/* Step 1 Specifics */
.booking-services-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.booking-services-selection .bk-service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 18px;
  cursor: pointer;
  border: 2px solid rgba(13, 35, 49, 0.09);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-services-selection .bk-service-card:has(.bk-service-radio:checked) {
  border: 2px solid var(--color-aqua);
  box-shadow: 0 12px 30px rgba(20, 180, 198, 0.18);
}

.booking-services-selection .bk-service-card-icon-wrap {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  background: var(--color-tint);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-services-selection .bk-service-card-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-services-selection .bk-service-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.booking-services-selection .bk-service-card-name {
  font-weight: 700;
  font-size: 16px;
}

.booking-services-selection .bk-service-card-price {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.55);
  line-height: 1.4;
}

.booking-services-selection .bk-service-card-meta {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.55);
}

.booking-services-selection .bk-service-card-tick {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  background: rgba(13, 35, 49, 0.07);
  color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-services-selection .bk-service-card:has(.bk-service-radio:checked) .bk-service-card-tick {
  background: var(--color-aqua);
  color: var(--color-ink);
}

/* Step 2 Specifics */
.booking-schedule-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.booking-schedule-form .form-label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.booking-schedule-form .chips-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-schedule-form .chip-btn {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 100px;
  cursor: pointer;
  background: #fff;
  color: var(--color-ink);
  transition: all 0.2s ease;
  outline: none;
}

.booking-schedule-form .chip-btn:has(input[type="radio"]:checked) {
  background: var(--color-ink);
  color: #fff;
  border: 1.5px solid var(--color-ink);
}

.booking-schedule-form .express-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(13, 35, 49, 0.1);
  border-radius: 18px;
  padding: 20px 24px;
  cursor: pointer;
}

.booking-schedule-form .express-track {
  width: 52px;
  height: 30px;
  border-radius: 100px;
  flex: none;
  position: relative;
  background: rgba(13, 35, 49, 0.15);
  transition: background 0.25s ease;
}

.booking-schedule-form .express-track.active {
  background: var(--color-aqua);
}

.booking-schedule-form .express-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 0.25s ease;
}

.booking-schedule-form .express-track.active .express-knob {
  left: 25px;
}

.booking-schedule-form .express-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-schedule-form .express-title {
  font-weight: 700;
  font-size: 15px;
}

.booking-schedule-form .express-sub {
  font-size: 13px;
  color: rgba(13, 35, 49, 0.55);
}

/* Step 3 Specifics */
.booking-details-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.booking-details-form input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 17px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(13, 35, 49, 0.14);
  background: #fff;
  outline: none;
  color: var(--color-ink);
}

.booking-details-form input:focus {
  border-color: var(--color-aqua);
}

.booking-details-form textarea {
  grid-column: span 2;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 17px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(13, 35, 49, 0.14);
  background: #fff;
  outline: none;
  resize: vertical;
  color: var(--color-ink);
}

.booking-details-form textarea:focus {
  border-color: var(--color-aqua);
}

.booking-details-form .booking-summary-band {
  margin-top: 22px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-details-form .booking-summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-details-form .booking-summary-caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-aqua-light);
}

.booking-details-form .booking-summary-value {
  font-weight: 700;
  font-size: 16.5px;
}

.booking-details-form .booking-summary-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

.booking-details-form .booking-summary-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-aqua);
}

/* Nav Buttons Row */
.booking-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 14px;
}

.booking-actions-row .btn-back {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: rgba(13, 35, 49, 0.7);
  border: 1.5px solid rgba(13, 35, 49, 0.18);
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.booking-actions-row .btn-back:hover {
  color: var(--color-ink);
}

.booking-actions-row .btn-continue {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-actions-row .btn-continue.disabled {
  cursor: not-allowed;
  background: rgba(13, 35, 49, 0.18);
  color: #fff;
  box-shadow: none;
}

.booking-actions-row .btn-continue.enabled {
  background: var(--color-ink);
  color: #fff;
  box-shadow: var(--shadow-btn-next);
}

.booking-actions-row .btn-continue.enabled:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

/* Confirmation View */
.booking-confirmation-view {
  text-align: center;
  padding: 60px 20px;
  animation: tlbRise 0.5s ease both;
}

.booking-confirmation-view .success-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--color-aqua);
  color: var(--color-ink);
  font-size: 42px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: tlbPop 0.6s ease both;
}

.booking-confirmation-view .success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.booking-confirmation-view .success-order-id {
  font-size: 17px;
  color: rgba(13, 35, 49, 0.65);
  margin: 0 0 8px;
}

.booking-confirmation-view .success-order-id span.highlight {
  font-weight: 700;
  color: var(--color-teal);
}

.booking-confirmation-view .success-subtext {
  font-size: 15px;
  color: rgba(13, 35, 49, 0.5);
  margin: 0 0 36px;
}

.booking-confirmation-view .actions-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-confirmation-view .btn-book-another {
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-confirmation-view .btn-book-another:hover {
  background: var(--color-aqua);
  color: var(--color-ink);
}

.booking-confirmation-view .btn-back-home {
  background: transparent;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(13, 35, 49, 0.2);
  cursor: pointer;
  font-family: var(--font-body);
}

.booking-confirmation-view .btn-back-home:hover {}


/* RichText title fixes */
.services-index-header .title p,
.services-index-header .title .rich-text,
.service-detail-header .title p,
.service-detail-header .title .rich-text,
.about-header .title p,
.about-header .title .rich-text,
.b2b-header .title p,
.b2b-header .title .rich-text {
  margin: 0 !important;
  padding: 0 !important;
}

/* ========================================================= */
/* =================== RESPONSIVE STYLES =================== */
/* ========================================================= */

/* Global Responsive Images */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* 1200px Breakpoint: Gradual Padding Reduction */
@media (max-width: 1200px) {

  .booking-container,
  .inner-page-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* 900px Breakpoint: Tablet Layouts & Tables */
@media (max-width: 900px) {

  /* Tables & Overflow Containers */
  .b2b-rates-container,
  .cost-chart-container,
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    /* Space for scrollbar */
    width: 100%;
  }

  .b2b-rate-header,
  .b2b-rate-row {
    min-width: 600px;
  }

  /* Flex Layouts - Stack side-by-side elements */
  .service-row-card {
    flex-direction: column;
    gap: 24px;
  }

  .service-row-card>div:nth-child(2),
  .service-row-card .includes-list,
  .service-row-card .pricing-side {
    width: 100%;
  }

  .service-row-card .pricing-side {
    align-items: flex-start;
    text-align: left;
  }

  /* Padding reduction */
  .booking-container,
  .inner-page-padding {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section.page-hero .hero-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* 768px Breakpoint: Mobile Layouts */
@media (max-width: 768px) {

  /* Stack Grids */
  .b2b-contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .b2b-contact-buttons .btn-primary-ink,
  .b2b-contact-buttons .btn-secondary-outline {
    width: 100%;
    justify-content: center;
  }
}

/* 480px Breakpoint: Small Mobile Devices */
@media (max-width: 480px) {

  .booking-container,
  .inner-page-padding {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* --- Article Detail Sidebar Layout & Related Articles --- */
.article-layout-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .article-layout-container {
    grid-template-columns: 1fr 400px;
  }
}

.article-main-column {
  min-width: 0;
}

.article-sidebar {
  min-width: 0;
}

.sticky-sidebar-content {
  position: static;
}

@media (min-width: 992px) {
  .sticky-sidebar-content {
    position: sticky;
    top: 100px; /* Respect sticky header height */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
    padding: 10px 30px 40px 30px; /* Give box-shadow space to render without clipping */
    margin: -10px -30px 0 -30px; /* Offset padding to preserve original alignment */
  }
}

.article-sidebar .sidebar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-ink);
  margin-top: 0;
  margin-bottom: 20px;
}

/* Related Articles Styling */
.related-articles-section {
  border-top: 1px solid rgba(13, 35, 49, 0.08);
  padding-top: 60px;
  margin-top: 60px;
}

.related-articles-header {
  margin-bottom: 36px;
}

.related-articles-header .related-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.related-articles-header .related-subtitle {
  font-size: 16px;
  color: rgba(13, 35, 49, 0.6);
  margin: 0;
}


/* ==================== 10. LEGAL PAGES ==================== */
.legal-page-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

.legal-header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(13, 35, 49, 0.1);
  padding-bottom: 24px;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 12px;
  line-height: 1.1;
}

.legal-meta {
  font-size: 13.5px;
  color: rgba(13, 35, 49, 0.5);
  font-weight: 500;
}

.legal-content {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(13, 35, 49, 0.8);
}

.legal-content p {
  margin-bottom: 24px;
}

.legal-content h2,
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-ink);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 24px;
  border-bottom: 1px solid rgba(13, 35, 49, 0.05);
  padding-bottom: 8px;
}

.legal-content h3 {
  font-size: 20px;
}
