/* ==========================
   CUTIKRAFTS COLOR SYSTEM
========================== */
:root {
  --ck-primary: #1f6f8b;
  --ck-primary-dark: #155a70;
  --ck-primary-soft: #e7f3f7;

  --ck-bg-page: #ffffff;
  --ck-bg-card: #f1f7fa;

  --ck-text-heading: #0f172a;
  --ck-text-body: #334155;
  --ck-text-muted: #64748b;
}

body {
  background: var(--ck-bg-page);
  color: var(--ck-text-body);
}/* ==================================================
   SKINCARE PAGE – CUTIKRAFTS (FULL FINAL CSS)
================================================== */

/* -------------------------------
   GLOBAL CONTAINER
-------------------------------- */

.ck-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* -------------------------------
   HERO SECTION
-------------------------------- */

.ck-single-hero.ck-skincare-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 90px;
}

.ck-single-hero.ck-skincare-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  
}

.ck-single-hero .ck-container {
  position: relative;
  z-index: 2;
}

.ck-single-hero h1 {
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--ck-primary);
  margin-bottom: 10px;
}

.ck-single-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--ck-primary);
  border-radius: 2px;
  margin-top: 12px;
}

.ck-single-hero p {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ck-text-muted);
  max-width: 720px;
  margin-top: 10px;
}

/* -------------------------------
   INTRO SECTION
-------------------------------- */

.ck-skincare-intro {
  padding: 0 0 100px;
}

.ck-intro-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 58px 62px;
  box-shadow: 0 22px 60px rgba(15,23,42,.08);
  max-width: 960px;
  margin: 0 auto;
}

.ck-section-label {
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ck-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.ck-intro-card h2 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ck-primary);
  margin-bottom: 18px;
}

.ck-intro-card p {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ck-text-body);
}

/* -------------------------------
   FEATURES SECTION
-------------------------------- */

.ck-skincare-features {
  padding: 90px 0;
}

.ck-features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ck-feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 38px;
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
  border-top: 3px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.ck-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(15,23,42,.14);
  border-top-color: var(--ck-primary);
}

.ck-feature-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ck-text-heading);
  margin-bottom: 12px;
  transition: color .3s ease;
}

.ck-feature-card:hover h3 {
  color: var(--ck-primary);
}

.ck-feature-card p {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ck-text-muted);
}

.ck-feature-card:hover p {
  color: var(--ck-text-body);
}

/* -------------------------------
   CTA SECTION
-------------------------------- */

.ck-skincare-cta {
  position: relative;
  padding: 110px 0;
  background: var(--ck-bg-soft);
}

.ck-skincare-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: var(--ck-primary);
  border-radius: 3px;
  opacity: 0.25;
}

.ck-cta-box {
  max-width: 1020px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  padding: 72px 64px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(15,23,42,.14);
}

.ck-cta-box h2 {
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ck-primary);
  margin-bottom: 14px;
}

.ck-cta-box p {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  color: var(--ck-text-muted);
  margin-bottom: 34px;
}

/* -------------------------------
   PRIMARY BUTTON
-------------------------------- */

.ck-btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--ck-primary),
    var(--ck-primary-dark)
  );
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31,111,168,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.ck-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(31,111,168,.45);
}

.ck-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(31,111,168,.35);
}

/* -------------------------------
   RESPONSIVE
-------------------------------- */

@media (max-width: 992px) {
  .ck-features-grid {
    grid-template-columns: 1fr;
  }

  .ck-intro-card {
    padding: 46px;
  }

  .ck-cta-box {
    padding: 60px 46px;
  }
}

@media (max-width: 576px) {
  .ck-single-hero h1 {
    font-size: 32px;
  }

  .ck-intro-card h2,
  .ck-cta-box h2 {
    font-size: 26px;
  }

  .ck-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}




/* ===== SECTION BASE ===== */
.healthcare-segments {
  padding: 90px 0 110px;
  background: #f3fbfd;
  font-family: "Poppins", sans-serif;
}

.segment-title {
  font-size: 52px;
  font-weight: 700;
  color: #1e73be;
  text-align: center;
  margin-bottom: 60px;
}

.segment-subtitle {
  text-align: center;
  color: #6d7c85;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===== GRID SYSTEM ===== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* ===== UNIFIED CARD SYSTEM ===== */
.segment-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 26px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;              /* LOCKS equal height */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.segment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
}

/* ===== IMAGE NORMALIZATION ===== */
.card-image {
  width: 100%;
  height: 190px;                  /* FORCE identical image box */
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* CROP instead of stretch */
  transition: transform 0.4s ease;
}

.segment-card:hover img {
  transform: scale(1.06);
}

/* ===== TEXT LOCKING ===== */
.segment-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f2230;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 14px;
  min-height: 58px;               /* Equal title height */
}

.segment-card p {
  font-size: 15px;
  color: #6d7c85;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 28px;
  min-height: 84px;               /* Equal paragraph block */
}

/* ===== BUTTON ALIGNMENT ===== */
.segment-btn {
  align-self: center;
  margin-top: auto;               /* Push button to same bottom line */
  padding: 12px 28px;
  background: #1e73be;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.segment-btn:hover {
  background: #155a96;
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .segments-grid { grid-template-columns: 1fr; }
  .segment-title { font-size: 38px; }
}
/* Smooth animation base */
.segment-card,
.segment-card img,
.segment-btn {
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

/* CARD HOVER — lift + depth + border glow */
.segment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(30, 115, 190, 0.15);
}

/* IMAGE HOVER — soft zoom + brightness */
.segment-card:hover .card-image img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* TITLE HOVER — brand highlight */
.segment-card:hover h3 {
  color: #1e73be;
}

/* PARAGRAPH subtle emphasis */
.segment-card:hover p {
  color: #4a5c66;
}

/* BUTTON HOVER — depth press effect */
.segment-btn {
  position: relative;
  overflow: hidden;
}

.segment-btn:hover {
  background: linear-gradient(135deg, #1e73be, #155a96);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30,115,190,0.35);
}

/* Button ripple highlight */
.segment-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.segment-btn:hover::after {
  left: 120%;
}

/* CARD SOFT GLOW BACKGROUND */
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(30,115,190,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

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

/* Ensure content sits above glow */
.segment-card > * {
  position: relative;
  z-index: 1;
}
