:root {
    /* ===== BRAND CORE (From PDF) ===== */
    --wt-teal-primary: #296C76;   /* Main brand teal */
    --wt-teal-dark:    #0F434D;   /* Deep anchor teal */
    --wt-teal-soft:    #CFE2E2;   /* Light teal background */
  
    /* ===== WARM ACCENTS ===== */
    --wt-coral:        #E28B5E;   /* Warm coral highlight */
    --wt-berry:        #AC4432;   /* Deep berry accent */
    --wt-cocoa:        #5D2622;   /* Dark cocoa shadow tone */
  
    /* ===== NEUTRALS (UI SUPPORT) ===== */
    --wt-white:        #FFFFFF;
    --wt-off-white:    #F8FAFC;
    --wt-gray-light:   #E5E7EB;
    --wt-gray:         #94A3B8;
    --wt-gray-dark:    #475569;
    --wt-text-main:    #0F172A;
    --wt-text-muted:   #64748B;
  
    /* ===== STATES ===== */
    --wt-success:      #2FB9A7;   /* Subtle success green-teal */
    --wt-warning:      #F59E0B;
    --wt-error:        #DC2626;
  
    /* ===== SHADOWS ===== */
    --wt-shadow-soft:  rgba(15, 67, 77, 0.08);
    --wt-shadow-med:   rgba(15, 67, 77, 0.15);
    --wt-shadow-strong:rgba(15, 67, 77, 0.25);
  }


  .mainFont {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  .cursiveFont{
    font-family: "Sirivennela", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

* {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

body {
  overflow-x: hidden;
  background: var(--wt-off-white);
  font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  color: var(--wt-text-main);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0 0 20px 20px;
  border-bottom: 0.5px solid var(--wt-berry);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(15,67,77,0.12);
}

.nav-logo {
  display: flex;
  color: var(--wt-off-white);
  text-align: center;
}

.nav-logo h4 {
  position: relative;
  margin: auto;
  padding-left: 10px;
  font-size: 1.95rem;
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wt-teal-dark);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--wt-coral),
    var(--wt-berry)
  );
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 32px;
  font-size: 0.95rem;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 12px 40px rgba(15,67,77,0.18);
}

.navbar.scrolled .nav-links a {
  color: var(--wt-teal-dark);
}


.navbar--hero {
  background: rgba(15, 67, 77, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.navbar--hero .nav-links a {
  color: var(--wt-off-white);
}

.navbar--hero .nav-links a::after {
  background: linear-gradient(
    90deg,
    var(--wt-coral),
    var(--wt-berry)
  );
}

.nav-toggle,
.mobile-menu {
  display: none;
}


/* =========================
   HERO WRAPPER
========================= */

.hero {
  position: relative;
  width: 100vw;
  height: 102vh;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 60%);
}

/* Decorative glow orbs */
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(226,139,94,0.35), transparent 70%);
  top: 10%;
  left: 15%;
  filter: blur(60px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(172,68,50,0.25), transparent 70%);
  bottom: 5%;
  right: 10%;
  filter: blur(80px);
}


/* =========================
   VIDEO BACKGROUND
========================= */

.heroBackground {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 95%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
}


/* =========================
   BLURRED OVERLAY
========================= */

.blurredScreen {
  position: relative;
  height: 98vh;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: linear-gradient(
    180deg,
    rgba(255,248,245,0.65) 0%,
    rgba(255,255,255,0.88) 60%
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
}


/* =========================
   HERO CONTENT LAYOUT
========================= */

.heroContentContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}


/* =========================
   HERO TEXT
========================= */

.heroHeading {
  position: relative;
  left: 5vw;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--wt-teal-dark);
  opacity: 0.9;
}

.heroHeading h1 {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--wt-teal-primary);
}

.heroHeading h1 span {
  color: var(--wt-coral);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.cursiveFont {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #ac4432;
}

.heroHeading p {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a4a46;
  opacity: 0.95;
}


/* =========================
   HERO IMAGE
========================= */

.heroImage {
  position: absolute;
  right: 0vw;
  top: -10px;
}

.heroImage img {
  width: 600px;
}

/* bottom fade effect */
.fade-bottom {
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 50%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 50%,
    transparent 100%
  );
}


/* =========================
   ACTION BUTTONS
========================= */

.heroActions {
  position: relative;
  left: 5vw;
  margin-top: 48px;
  display: flex;
  gap: 1rem;
}

.neu-button {
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  color: var(--wt-teal-dark);
  background-image: linear-gradient(
    30deg,
    #FF6B4A 0%,
    #FFA574 35%,
    #2DD4BF 100%
  );
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.neu-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 2px 2px 5px rgba(0,0,0,0.15),
    inset -2px -2px 5px rgba(255,255,255,0.6),
    0 12px 30px rgba(0,0,0,0.25);
}


/* =========================
   CURVED DIVIDER
========================= */

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  display: block;
  z-index: 20;
}

  
/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.benefitsSection h3{
  position: relative;
  text-align: center;
  margin-top: 50px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--wt-teal-primary);
}

.iconsMainContainer {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 200px;
}

.iconContainer {
   position: relative;
   border: 3px solid var(--wt-teal-primary);
   width: 10vw;
   height: 10vw;
   border-radius: 50%;
   align-content: center;
   text-align: center;
 }

 .blush {
   position: absolute;
   width: 6vw;
   height: 6vw;
   background-color: rgba(217, 101, 59, 0.5);
   border-radius: 50%;
   opacity: 0.7;
   left:50%;
   top: -10%;
 }

 .iconContainer img {
   position: relative;
   width: 50%;
 }

 .iconContainer p {
   color:var(--wt-gray-dark)
 }

 /*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
 .trust-banner {
  position: relative;
  padding: 5rem 1.5rem;
  margin-top: 120px;
  background: linear-gradient(
    180deg,
    var(--wt-teal-soft) 0%,
    var(--wt-off-white) 100%
  );
  overflow: hidden;
  z-index: 10;
}

.trust-banner img {
  width: auto;
  height: 200px;
  margin: 30px;
}

.trust-banner::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(226,139,94,0.18),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
}

.trust-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  border-left: 1px solid var(--wt-berry);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;

  box-shadow:
    0 24px 60px rgba(15,67,77,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.trust-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wt-teal-primary);
  opacity: 0.85;
}

.trust-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--wt-teal-dark);
  margin-bottom: 0.75rem;
}

.trust-text span {
  color: var(--wt-coral);
}

.trust-text p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wt-text-muted);
}

.trust-cta {
  display: flex;
}

.trust-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wt-teal-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 999px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(15,67,77,0.15);

  transition: all 0.3s ease;
  height: 100px;
  margin: auto;
}

.trust-link:hover {
  gap: 0.75rem;
  background: rgba(255,255,255,1);
  box-shadow: 0 10px 30px rgba(15,67,77,0.18);
}


/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.attractionContainer {
  background-color: var(--wt-teal-dark);
  border-radius: 20% 37% 0% 0;
}

.fadingImage{
  position: absolute;
  height: 200%;
  opacity: 0.18;
}

.fadingImage {
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 0%,
    transparent 0%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 0%,
    transparent 80%
  );
}


.powderContainer ,.sachetContainer {
  position: relative;
  text-align: center;
  height: 90vh;
}

/* Base annotation */
.annotation {
  position: absolute;
  display: flex;
  align-items: center;
  color: var(--wt-off-white);
  font-size: 1.2 nrem;
  max-width: 260px;
  z-index: 5;
}

.annotation.t35 { top: 35%; }
.annotation.t55 { top: 55%; }
.annotation.t75 { top: 75%; }
.annotation.t42 { top: 42%; }
.annotation.t62 { top: 62%; }
.annotation.t82 { top: 82%; }

/* Text */
.annotation .label {
  white-space: nowrap;
  opacity: 0.9;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);

}

/* Line */
.annotation .line {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Dot */
.annotation .dot {
  width: 12px;
  height: 12px;
  background: var(--wt-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* LEFT SIDE */
.annotation.left {
  right: 60%;
  transform: translateX(-100px);
  flex-direction: row;
}

.annotation.left .label {
  margin-right: 12px;
}

.annotation.left .line {
  width: 130px;
}

.annotation.left .dot {
  margin-left: 6px;
}

/* RIGHT SIDE */
.annotation.right {
  left: 54%;
  transform: translateX(100px);
  flex-direction: row-reverse;
}

.annotation.right .label {
  margin-left: 12px;
}

.annotation.right .line {
  width: 100px;
}

.annotation.right .dot {
  margin-right: 6px;
}

.annotation .dot {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}

#powderCanvas {
  position: relative;
  inset: 0;
  width: 170px;
  height: 100vh;
  pointer-events: none;
  top:-100px;
}

.powderContainer img {
  width: 400px;
  position: absolute;
  z-index: 3;
  transform: translate(-110px);
}

.sachetContainer img {
  position: relative;
  width: 200px;
  top:-40px;
}

.sachetContainer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
  padding: 0 6vw;
  height: 90vh;
  color: var(--wt-off-white);
}

/* Shared details */
.sachetDetails {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.sachetDetails h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--wt-gray-light);
}

/* Left side list */
.sachetDetails.left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sachetDetails.left li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 14px;
}

.sachetDetails.left li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wt-teal-soft);
}

/* Right paragraph */
.sachetDetails.right p {
  color: var(--wt-off-white);
  opacity: 0.85;
}

/* Sachet image */
.sachetContainer img {
  width: 200px;
  z-index: 2;
}

.glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contentsTable h4, .sachetDetails h4 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.75rem;
  color: var(--wt-coral);
}

.contentsTable ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contentsTable li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wt-coral);
  font-size: 0.95rem;
}

.contentsTable li:last-child {
  border-bottom: none;
}

.contentsTable li span:first-child {
  opacity: 0.9;
}

.contentsTable li span:last-child {
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.conversion-collagen {
  position: relative;
  background-color: var(--wt-teal-dark);
  color: var(--wt-off-white);
  padding: 12rem 1.5rem;
  text-align: center;
}

.conversion-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.conversion-collagen h2 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.conversion-collagen h2 span {
  color: var(--wt-teal-soft);
  font-weight: 400;
}

.conversion-subhead {
  font-size: 1.2rem;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 4rem;
}

.conversion-copy {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: left;
}

.conversion-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.list-feel {
  font-size: 1.15rem;
  color: var(--wt-teal-soft);
  margin-left: 1rem;
}

.highlight-block {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--wt-berry);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  font-size: clamp(1.8rem, 3vw, 1.5rem);
  line-height: 1.5;
  color: var(--wt-coral);
}

.closing {
  font-size: 1.2rem;
  color: var(--wt-teal-soft);
  margin-top: 3rem;
}

.cta-primary {
  background: var(--wt-coral);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(226, 139, 94, 0.35);
}

.conversion-collagen img {
  position:absolute;
  width: 50vw;
  left: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.3;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.bubble-section {
  position: relative;
  height: 100vh;   /* ensures it fills screen */
  width: 100%;
  overflow: visible;
  margin-bottom: 100px;
}

.bubble-track {
  position: absolute;
  inset: 0;
}

/* Bubble circles */
.bubble {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  animation-name: floatRight;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

}

.bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatRight {
  from { transform: translateX(-200px); }
  to   { transform: translateX(110vw); }
}

.floating-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* one elegant background word */
.floating-word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;

  /* ultra subtle luxury tone */
  color: rgba(172, 68, 50, 0.05);

  animation: wordFade 6s ease-in-out forwards;
}

@keyframes wordFade {
  0%   { opacity: 0; transform: translate(-50%, -40%) scale(0.98); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -60%) scale(1.02); }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/* ===== SECTION ===== */
.ritual-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 100px;
}

/* ===== IMAGES ===== */
.ritual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.ritual {
  position: relative;
  overflow: hidden;
}

.ritual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* cool tone */
.ritual.cold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 190, 210, 0.25);
}

/* warm tone */
.ritual.warm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(226,139,94,0.25);
}

/* ===== BLEND SEAM ===== */
.ritual-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 120px;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.85),
    rgba(255,255,255,0)
  );
  z-index: 2;
}

/* ===== TEXT OVERLAY ===== */
.ritual-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.ritual-overlay h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--wt-teal-dark);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.ritual-overlay p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wt-text-main);
  background: rgba(255,255,255,0.65);
  padding: 16px 22px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}


.how-it-works {
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Steam container */
.steam {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Steam lines */
.steam span {
  display: block;
  width: 6px;
  height: 60px;
  margin: 6px auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  filter: blur(4px);
  animation: steamRise 4s infinite ease-in-out;
  opacity: 0;
}

.steam span:nth-child(2){ animation-delay: 1s; }
.steam span:nth-child(3){ animation-delay: 2s; }

@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  30% { opacity: .5; }
  100% { transform: translateY(-80px) scaleX(1.8); opacity: 0; }
}

.droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.droplets::before,
.droplets::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background-image:
    radial-gradient(rgba(255,255,255,0.35) 2px, transparent 3px);
  background-size: 30px 30px;
  opacity: 0.25;
  animation: condensationMove 18s linear infinite;
}

.droplets::after {
  animation-direction: reverse;
  opacity: 0.15;
}

@keyframes condensationMove {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.light-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.light-particles::before,
.light-particles::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(rgba(255,255,255,0.35) 1px, transparent 2px);
  background-size: 120px 120px;
  opacity: 0.2;
  animation: floatLights 40s linear infinite;
}

.light-particles::after {
  animation-direction: reverse;
  opacity: 0.12;
}

@keyframes floatLights {
  from { transform: translateY(0); }
  to { transform: translateY(-120px); }
}

.ritual img {
  animation: cinematicZoom 18s ease-in-out infinite alternate;
}

@keyframes cinematicZoom {
  from { transform: scale(1); }
  to { transform: scale(1.18); }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/* TITLES */

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--wt-teal-dark);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--wt-text-muted);
  max-width: 680px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* GRID */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */

.step-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 42px 30px 36px;
  box-shadow: 0 20px 50px var(--wt-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px var(--wt-shadow-med);
}

/* ICON */

.step-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(
    135deg,
    var(--wt-teal-primary),
    var(--wt-success)
  );
  color: var(--wt-white);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 26px;
  box-shadow: 0 12px 30px rgba(41, 108, 118, 0.25);
}

/* CARD TEXT */

.step-card h3 {
  font-size: 1.35rem;
  color: var(--wt-teal-dark);
  margin-bottom: 14px;
  font-weight: 500;
}

.step-card p {
  color: var(--wt-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* IMAGE */

.step-image {
  width: 100%;
  object-fit: contain;
  margin-top: 26px;
  border-radius: 14px;
  border: 1px solid var(--wt-berry)
}

.before-after {
  object-fit: cover;
}

/* HIGHLIGHT CARD (KEY STEP) */

.highlight {
  background: linear-gradient(
    180deg,
    rgba(41, 108, 118, 0.08),
    rgba(255, 255, 255, 0.95)
  );
  border: 1px solid rgba(41, 108, 118, 0.25);
}

.highlight .step-icon {
  background: linear-gradient(
    135deg,
    var(--wt-coral),
    var(--wt-berry)
  );
  box-shadow: 0 12px 30px rgba(226, 139, 94, 0.35);
}

/* CTA */

.cta-wrapper {
  margin-top: 70px;
}

.cta-button {
  display: inline-block;
  padding: 16px 44px;
  background: var(--wt-coral);
  color: var(--wt-white);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 40px rgba(226, 139, 94, 0.35);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(226, 139, 94, 0.45);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

.order-navbar {
  background: rgba(15, 67, 77, 0.82);
}

.order-checkout-page {
  min-height: 100vh;
  padding: 130px 24px 60px;
  background:
    radial-gradient(circle at 20% 20%, rgba(226, 139, 94, 0.2), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(172, 68, 50, 0.15), transparent 42%),
    var(--wt-off-white);
}

.order-hero {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.order-hero .order-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--wt-teal-primary);
}

.order-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--wt-teal-dark);
  margin-bottom: 10px;
}

.order-hero p {
  color: var(--wt-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.order-checkout-card {
  width: 100%;
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 67, 77, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 67, 77, 0.12);
  padding: 26px;
}

.order-details-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-details-form > * {
  min-width: 0;
}

.order-details-form .form-group {
  margin-bottom: 0;
}

.order-details-form .form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wt-teal-dark);
  margin-bottom: 6px;
}

.order-details-form input,
.order-details-form textarea,
.order-details-form select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(15, 67, 77, 0.18);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  font-family: "Comfortaa", sans-serif;
  color: var(--wt-teal-dark);
  background: rgba(255, 255, 255, 0.85);
}

.order-details-form .form-group:nth-child(6) {
  grid-column: 1 / -1;
}

.order-total {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--wt-teal-dark);
  margin-top: 8px;
}

.order-total strong {
  color: var(--wt-coral);
}

.order-details-form button {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.payfast-hidden {
  display: none;
}


.contact-page {
  height: 80vh;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  background: radial-gradient(
    circle at top,
    #123f48,
    var(--wt-teal-dark)
  );
  padding: 10rem 1.5rem;
  color: var(--wt-off-white);
  background-image: url("./Images/contact-background.jpeg");
  background-size: cover;
}

.contact-inner {
  max-width: 90%;
  height: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  color: white;
  border-radius: 20px;
  padding: 50px;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--wt-teal-soft);
}

.contact-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.contact-intro {
  font-size: 1.2rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 1.5rem;
}

.contact-soft {
  margin-top: 2rem;
  font-style: italic;
  color: var(--wt-teal-soft);
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
}

.contact-details strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.contact-details span {
  color: rgba(248, 250, 252, 0.85);
}

/* FORM */

.contact-form {
  background: var(--wt-teal-primary);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border:var(--wt-coral) 1px solid
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--wt-teal-dark);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--wt-coral);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.contact-form button {
  margin-top: 1rem;
  background: var(--wt-coral);
  color: #fff;
  border: none;
  padding: 1rem;
  width: 100%;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(226, 139, 94, 0.4);
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.site-footer {
  background: linear-gradient(
    180deg,
    var(--wt-teal-dark),
    #0b2f36
  );
  color: var(--wt-off-white);
  padding: 80px 24px 40px;
  margin-top: 100px;
  border-radius: 20px 20px 0 0 ;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Brand */
.footer-brand img {
  height: 38px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* Link groups */
.footer-links h4,
.footer-newsletter h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--wt-white);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--wt-coral);
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.75);
}

.footer-newsletter form {
  display: flex;
  gap: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  outline: none;
}

.footer-newsletter .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}




/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.btn {
  position: relative;
  padding: 16px 44px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
  overflow: hidden;
  z-index: 20;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--wt-coral),
    #FFA574 40%,
    var(--wt-berry)
  );
  color: var(--wt-white);
  box-shadow:
    0 14px 40px rgba(226, 139, 94, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);
    cursor: pointer;
}

/* soft glass highlight */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45),
    transparent 60%
  );
  opacity: 0.35;
  
}

.btn-secondary {
  background: rgba(255,255,255,0.75);
  color: var(--wt-teal-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15,67,77,0.15);
  box-shadow:
    0 10px 30px rgba(15,67,77,0.12);
    cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.9);
  box-shadow:
    0 16px 40px rgba(15,67,77,0.18);
}

.hero .btn-primary {
  animation: softGlow 5s ease-in-out infinite;
  cursor: pointer;
}

@keyframes softGlow {
  0%, 100% {
    box-shadow:
      0 14px 40px rgba(226, 139, 94, 0.35);
  }
  50% {
    box-shadow:
      0 18px 55px rgba(226, 139, 94, 0.5);
  }
}
