/* ═══════════════════════════════════════════════════════════════════════════
   Sarita Creations & Collections — B2B Wholesale Portal
   Luxury Fragrance Wholesale Design · Midnight Navy × Rich Gold × Warm Ivory
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts loaded in layout: Playfair Display + Inter ─────────── */

:root {
  /* ── Brand Palette ─────────────────────────────────── */
  --navy:          #0D1929;   /* deepest navy — hero, header, dark sections */
  --navy-mid:      #162236;   /* card dark bg */
  --navy-light:    #1F3350;   /* hover states on dark */
  --gold:          #C9943A;   /* primary accent */
  --gold-bright:   #E8B84A;   /* highlights, hover */
  --gold-dim:      #9E7228;   /* dimmed gold text */
  --gold-line:     #D4A84B33; /* thin decorative lines */
  --maroon:        #7A1F3A;   /* secondary accent — badges, tags */
  --ivory:         #FAF7F0;   /* page background */
  --ivory-alt:     #F2EDE2;   /* section alternate bg */
  --ivory-mid:     #E8E0D0;   /* card borders */
  --white:         #FFFFFF;
  --text:          #1A1714;   /* near-black body copy */
  --text-mid:      #3E3830;   /* secondary body */
  --text-muted:    #7A7060;   /* captions, placeholders */
  --border:        #DDD5C5;   /* default borders */
  --wa:            #25D366;   /* WhatsApp green */
  --wa-dark:       #128C7E;

  /* ── Tokens ────────────────────────────────────────── */
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 12px rgba(13,25,41,.08);
  --shadow:        0 6px 32px rgba(13,25,41,.12);
  --shadow-lg:     0 16px 64px rgba(13,25,41,.18);
  --shadow-gold:   0 8px 40px rgba(201,148,58,.22);
  --transition:    .2s cubic-bezier(.4,0,.2,1);

  /* ── Typography ────────────────────────────────────── */
  --font-display:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body { font-family: var(--font-body); line-height: 1.65; color: var(--text); background: var(--ivory); -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Layout Utility ────────────────────────────────────────────────────── */
.ws-container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ── Decorative Gold Divider ───────────────────────────────────────────── */
.ws-gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.ws-gold-rule::before, .ws-gold-rule::after {
  content: '';
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: .5;
}
.ws-gold-rule-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   ANNOUNCE BAR
   ═══════════════════════════════════════════════════════════ */
.ws-announce {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(201,148,58,.2);
}
.ws-announce a { color: var(--gold-bright); font-weight: 600; }
.ws-announce strong { color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.ws-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,148,58,.15);
  backdrop-filter: blur(20px);
  transition: box-shadow var(--transition);
}
.ws-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.35); }

.ws-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}

.ws-logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Logo image — shown in a white pill so any logo colour works on dark header */
.ws-logo-img-wrap {
  background: rgba(255,255,255,.96); border-radius: 8px;
  padding: 5px 10px; display: flex; align-items: center;
  flex-shrink: 0; max-height: 46px;
}
.ws-logo-img { height: 34px; width: auto; object-fit: contain; display: block; }

/* Text block — always visible */
.ws-logo-text-block { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.ws-logo-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.15;
  letter-spacing: .2px;
}
.ws-logo-badge {
  font-size: 7.5px; font-weight: 900; letter-spacing: 2.5px;
  padding: 2px 8px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  color: var(--navy); display: inline-block;
  text-transform: uppercase;
}

.ws-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.ws-nav-link {
  color: rgba(255,255,255,.75); font-size: 13.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .2px;
}
.ws-nav-link:hover { color: var(--gold-bright); background: rgba(255,255,255,.06); }

.ws-header-cta { display: flex; align-items: center; gap: 10px; }

/* ── Hamburger ─────────────────────────────────────────────────────────── */
.ws-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 38px; height: 38px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; cursor: pointer; padding: 8px;
}
.ws-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.ws-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all var(--transition); text-align: center;
  white-space: nowrap; letter-spacing: .2px;
}
.ws-btn:hover  { transform: translateY(-2px); }
.ws-btn:active { transform: translateY(0); }

.ws-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy); border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,148,58,.3);
}
.ws-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-bright), #F0C86A);
  box-shadow: var(--shadow-gold);
}

.ws-btn-wa {
  background: var(--wa); color: #fff; border-color: var(--wa);
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.ws-btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,.35); }

.ws-btn-outline {
  background: transparent; color: var(--gold-bright);
  border-color: rgba(201,148,58,.6);
}
.ws-btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.ws-btn-outline-dark {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.ws-btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dim); }

.ws-btn-ghost-light {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}
.ws-btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4); }

.ws-btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.ws-btn-navy:hover { background: var(--navy-light); }

.ws-btn-primary { /* form submit */
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.ws-btn-primary:hover { background: linear-gradient(135deg, var(--navy-light), var(--navy)); box-shadow: var(--shadow); }

.ws-btn-lg   { padding: 15px 32px; font-size: 15px; border-radius: 8px; }
.ws-btn-sm   { padding: 8px 16px;  font-size: 13px; border-radius: 6px; }
.ws-btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   HERO — FULL VIEWPORT, DRAMATIC DARK + GOLD
   ═══════════════════════════════════════════════════════════ */
.ws-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}

/* Layered background */
.ws-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, #1a2e48 0%, var(--navy) 70%);
}
.ws-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(201,148,58,.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201,148,58,.07) 0%, transparent 45%);
}
/* Subtle arabic/ornamental grid pattern */
.ws-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40Z' fill='none' stroke='rgba(201%2C148%2C58%2C0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: .8;
}

/* Bottom wave */
.ws-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
}

.ws-hero-content {
  position: relative; z-index: 3;
  padding: 100px 24px 120px;
  text-align: center; width: 100%;
}

.ws-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,148,58,.12); border: 1px solid rgba(201,148,58,.3);
  color: var(--gold-bright); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 28px;
}
.ws-hero-eyebrow::before, .ws-hero-eyebrow::after {
  content: '◆'; font-size: 7px; opacity: .6;
}

.ws-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.15;
  margin-bottom: 24px; text-wrap: balance;
}
.ws-hero-h1 .ws-accent {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.72);
  max-width: 700px; margin: 0 auto 40px; line-height: 1.75;
}

.ws-hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}

.ws-hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 32px;
}
.ws-hero-divider span { width: 64px; height: 1px; background: rgba(201,148,58,.3); }
.ws-hero-divider em { font-size: 11px; font-style: normal; color: rgba(255,255,255,.4); letter-spacing: 2px; text-transform: uppercase; }

.ws-hero-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.ws-hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.ws-hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   STATS RIBBON
   ═══════════════════════════════════════════════════════════ */
.ws-stats {
  background: linear-gradient(135deg, var(--gold) 0%, #D4A840 50%, var(--gold-bright) 100%);
  padding: 0;
  position: relative;
}
.ws-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E");
}
.ws-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.ws-stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.ws-stat-item:last-child { border-right: none; }
.ws-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.ws-stat-label {
  font-size: 11.5px; font-weight: 700; color: var(--navy);
  opacity: .7; margin-top: 5px;
  text-transform: uppercase; letter-spacing: .8px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION DEFAULTS
   ═══════════════════════════════════════════════════════════ */
.ws-section { padding: 88px 0; }

.ws-section-head { text-align: center; margin-bottom: 60px; }
.ws-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.ws-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.2;
}
.ws-section-head p {
  font-size: 16px; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.ws-section-head-light .ws-section-label { color: rgba(201,148,58,.9); }
.ws-section-head-light h2 { color: #fff; }
.ws-section-head-light p  { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════ */
.ws-categories { background: var(--ivory); }

.ws-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}

.ws-cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 18px 24px;
  text-align: center; display: block;
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.ws-cat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.ws-cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201,148,58,.3); }
.ws-cat-card:hover::before { transform: scaleX(1); }

.ws-cat-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--ivory-alt), var(--ivory-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold-dim);
  transition: all var(--transition); border: 1px solid var(--border);
}
.ws-cat-card:hover .ws-cat-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy); border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,148,58,.3);
}

.ws-cat-card h3 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.ws-cat-card p  { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.ws-cat-arrow   { font-size: 12px; font-weight: 700; color: var(--gold-dim); letter-spacing: .5px; }
.ws-cat-all { border-style: dashed; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.ws-products-section { background: var(--ivory-alt); }

.ws-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 24px;
}

.ws-product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.ws-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,148,58,.25);
}

.ws-product-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--ivory-alt);
}
.ws-product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.ws-product-card:hover .ws-product-img { transform: scale(1.06); }

.ws-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy); font-size: 9.5px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(201,148,58,.4);
}
.ws-product-cat-tag {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(13,25,41,.8); color: rgba(255,255,255,.9);
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
  backdrop-filter: blur(8px);
}

.ws-product-body {
  padding: 20px 18px 18px; display: flex; flex-direction: column; flex: 1;
}
.ws-product-name {
  font-size: 15px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.ws-product-desc {
  font-size: 12.5px; color: var(--text-muted);
  margin-bottom: 12px; flex: 1; line-height: 1.6;
}

.ws-product-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.ws-product-moq {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  background: #FEF7E0; color: #7A5500; border: 1px solid #F0D87A;
}
.ws-product-weight {
  font-size: 11px; padding: 3px 9px; border-radius: 4px;
  background: var(--ivory-alt); color: var(--text-muted);
  border: 1px solid var(--border);
}
.ws-in-stock {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  background: #E8FAF0; color: #1A6B3A; border: 1px solid #A8E6C0;
}

.ws-product-price { margin-bottom: 16px; }
.ws-price-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-muted);
  display: block; margin-bottom: 3px;
}
.ws-price-val {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  letter-spacing: -.5px; font-variant-numeric: tabular-nums;
}
.ws-price-mrp {
  font-size: 12px; color: var(--text-muted);
  text-decoration: line-through; margin-left: 8px;
}
.ws-price-save {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  color: #fff; background: var(--maroon); padding: 2px 7px;
  border-radius: 3px; margin-left: 6px;
}

.ws-enquire-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px 16px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.ws-enquire-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  opacity: 0; transition: opacity var(--transition);
}
.ws-enquire-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,25,41,.25); }
.ws-enquire-btn:hover::after { opacity: 1; }
.ws-enquire-btn span, .ws-enquire-btn svg { position: relative; z-index: 1; }
.ws-enquire-btn:hover span, .ws-enquire-btn:hover svg { color: var(--navy); }

.ws-empty-products { text-align: center; padding: 64px 20px; }
.ws-empty-products p { color: var(--text-muted); margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US — dark navy, gold glass cards
   ═══════════════════════════════════════════════════════════ */
.ws-why {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.ws-why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(201,148,58,.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(201,148,58,.06) 0%, transparent 50%);
}

.ws-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  position: relative;
}

.ws-why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,148,58,.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.ws-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.ws-why-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,148,58,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.ws-why-card:hover::before { opacity: 1; }

.ws-why-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(201,148,58,.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
  border: 1px solid rgba(201,148,58,.2);
  transition: background var(--transition);
}
.ws-why-card:hover .ws-why-icon-wrap { background: rgba(201,148,58,.2); }

.ws-why-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--gold-bright); margin-bottom: 10px;
}
.ws-why-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PROCESS — ivory, gold numbered steps
   ═══════════════════════════════════════════════════════════ */
.ws-process { background: var(--white); }

.ws-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ws-process-grid::before {
  content: '';
  position: absolute; top: 35px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  opacity: .3;
}

.ws-step {
  text-align: center; padding: 0 20px;
  position: relative;
}
.ws-step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--ivory-alt);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
  position: relative; z-index: 1;
}
.ws-step:hover .ws-step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.ws-step-num {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold-dim);
  transition: color var(--transition);
}
.ws-step:hover .ws-step-num { color: var(--navy); }
.ws-step h3 { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.ws-step p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   ENQUIRY FORM SECTION
   ═══════════════════════════════════════════════════════════ */
.ws-enquiry-section {
  background: var(--ivory-alt);
  padding: 88px 0;
}

.ws-enquiry-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 56px; align-items: start;
}

.ws-enquiry-info { padding-top: 8px; }
.ws-enquiry-info h2 {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--navy);
  margin-bottom: 14px; line-height: 1.25;
}
.ws-enquiry-info > p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }

.ws-enquiry-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.ws-enquiry-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text-mid);
}
.ws-enquiry-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 2px 8px rgba(201,148,58,.3);
}

.ws-contact-card {
  background: var(--navy); border-radius: var(--radius);
  padding: 24px 20px; margin-top: 8px;
  border: 1px solid rgba(201,148,58,.15);
}
.ws-contact-card p {
  color: rgba(255,255,255,.6); font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.ws-contact-card a {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-bright); font-size: 17px; font-weight: 600;
  margin-bottom: 6px;
}
.ws-contact-card small { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── Form Wrapper ─────────────────────────────────────────────────────── */
.ws-enquiry-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.ws-form-tabs {
  display: flex; gap: 4px; background: var(--ivory-alt);
  padding: 5px; border-radius: 10px; margin-bottom: 28px;
}
.ws-tab {
  flex: 1; padding: 10px 10px; font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); background: none; border: none;
  border-radius: 7px; cursor: pointer;
  transition: all var(--transition);
}
.ws-tab.active {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.ws-tab:hover:not(.active) { color: var(--navy); }

.ws-form { display: flex; flex-direction: column; gap: 18px; }
.ws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ws-form-group { display: flex; flex-direction: column; gap: 7px; }
.ws-form-label {
  font-size: 12.5px; font-weight: 700; color: var(--text-mid);
  letter-spacing: .3px;
}
.ws-form-input {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--ivory); outline: none;
  transition: all var(--transition);
}
.ws-form-input::placeholder { color: var(--text-muted); font-size: 13.5px; }
.ws-form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,148,58,.12);
}
.ws-form-textarea { resize: vertical; min-height: 100px; }

.ws-form-success {
  text-align: center; padding: 48px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.ws-form-success svg { color: var(--wa); }
.ws-form-success h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }
.ws-form-success p  { color: var(--text-muted); font-size: 14.5px; }

.ws-form-error {
  padding: 12px 16px; background: #fff5f5;
  border: 1px solid #fecaca; border-radius: 8px;
  font-size: 13.5px; color: #b91c1c;
}
.ws-form-disclaimer {
  font-size: 11.5px; color: var(--text-muted);
  text-align: center; margin-top: 4px; line-height: 1.6;
}
.req { color: #dc2626; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — Dark navy, elegant
   ═══════════════════════════════════════════════════════════ */
.ws-testimonials {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.ws-testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,148,58,.07) 0%, transparent 70%);
}

.ws-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.ws-testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,148,58,.12);
  border-radius: var(--radius); padding: 32px 26px;
  transition: all var(--transition);
}
.ws-testi-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,148,58,.25);
  transform: translateY(-4px);
}

.ws-testi-quote {
  font-size: 2.5rem; line-height: 1; color: var(--gold);
  opacity: .4; margin-bottom: 16px; font-family: Georgia, serif;
}
.ws-testi-stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.ws-testi-stars svg { color: var(--gold); }
.ws-testi-card > p {
  font-size: 14px; color: rgba(255,255,255,.75);
  font-style: italic; line-height: 1.75; margin-bottom: 24px;
}
.ws-testi-author { display: flex; align-items: center; gap: 14px; }
.ws-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.ws-testi-author-info strong { font-size: 14px; color: #fff; display: block; margin-bottom: 2px; }
.ws-testi-author-info small  { font-size: 12px; color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP — bold gold gradient
   ═══════════════════════════════════════════════════════════ */
.ws-cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2D45 40%, var(--navy-mid) 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(201,148,58,.15);
  border-bottom: 1px solid rgba(201,148,58,.15);
  position: relative; overflow: hidden;
}
.ws-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,148,58,.08) 0%, transparent 70%);
}
.ws-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; position: relative;
}
.ws-cta-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ws-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; margin-bottom: 8px;
}
.ws-cta-inner p { font-size: 15px; color: rgba(255,255,255,.65); }
.ws-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — very dark, structured
   ═══════════════════════════════════════════════════════════ */
.ws-footer {
  background: #080F18;
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}

.ws-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; margin-bottom: 56px;
}

.ws-footer-logo {
  height: 44px; margin-bottom: 18px;
  background: rgba(255,255,255,.9); border-radius: 8px;
  padding: 4px 10px; object-fit: contain;
}
.ws-footer-tagline {
  font-size: 13.5px; line-height: 1.75; margin-bottom: 22px;
  color: rgba(255,255,255,.5);
}
.ws-footer-socials { display: flex; gap: 10px; }
.ws-social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all var(--transition);
}
.ws-social-btn:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

.ws-footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,148,58,.2);
}
.ws-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.ws-footer-col li { font-size: 13.5px; }
.ws-footer-col a { transition: color var(--transition); }
.ws-footer-col a:hover { color: var(--gold-bright); }

.ws-footer-contact { display: flex; flex-direction: column; gap: 14px; }
.ws-footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 13px;
}
.ws-footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); opacity: .7; }
.ws-footer-contact-item a { color: rgba(255,255,255,.6); }
.ws-footer-contact-item a:hover { color: var(--gold-bright); }

.ws-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0 100px; /* 100px bottom clears the fixed WA button */
}
.ws-footer-seo-text {
  font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.28);
  margin-bottom: 24px;
}
.ws-footer-seo-text strong { color: rgba(255,255,255,.42); }
.ws-footer-copy {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.32);
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 18px;
}
.ws-footer-copy a { color: var(--gold-dim); }
.ws-footer-copy a:hover { color: var(--gold-bright); }
.ws-footer-links { display: flex; gap: 20px; }

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════ */
.ws-float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  overflow: hidden;
}
.ws-float-wa:hover {
  background: var(--wa-dark); transform: scale(1.05);
  box-shadow: 0 8px 36px rgba(37,211,102,.5); color: #fff;
}
.ws-float-wa-pulse {
  position: absolute; inset: 0; border-radius: 50px;
  background: var(--wa); animation: ws-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes ws-pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════════ */
.ws-page-header {
  background: var(--navy); padding: 56px 0 48px; text-align: center;
  position: relative; overflow: hidden;
}
.ws-page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ws-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff; margin-bottom: 10px;
}
.ws-page-header p { font-size: 15.5px; color: rgba(255,255,255,.65); margin-bottom: 18px; }

.ws-breadcrumb {
  font-size: 13px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.ws-breadcrumb a { color: var(--gold); }
.ws-breadcrumb .sep { color: rgba(255,255,255,.3); }
.ws-breadcrumb .cur { color: rgba(255,255,255,.6); }

.ws-filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 0; position: sticky; top: 68px; z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ws-filter-form { display: flex; flex-direction: column; gap: 10px; }

/* Row 1: search input + submit button always side by side */
.ws-filter-search-row {
  display: flex; align-items: center; gap: 10px;
}
.ws-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--ivory); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0 14px;
  flex: 1; max-width: 420px; color: var(--text-muted);
  transition: border-color var(--transition);
}
.ws-search-wrap:focus-within { border-color: var(--gold); }
.ws-search-input {
  flex: 1; border: none; background: none;
  padding: 10px 0; font-size: 14px;
  font-family: var(--font-body); outline: none; color: var(--text);
}

/* Row 2: category tabs — wrap freely, no button to disturb them */
.ws-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.ws-cat-tab {
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); background: var(--ivory-alt);
  border: 1px solid var(--border); white-space: nowrap;
  transition: all var(--transition); line-height: 1.5;
}
.ws-cat-tab:hover { border-color: var(--gold); color: var(--gold-dim); }
.ws-cat-tab.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

.ws-products-page { background: var(--ivory-alt); padding: 40px 0 88px; }

.ws-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.ws-results-count { font-size: 14px; color: var(--text-muted); }
.ws-results-count strong { color: var(--text); font-weight: 600; }
.ws-results-count a { color: var(--gold-dim); text-decoration: underline; }

.ws-product-grid-page { grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); }

.ws-no-products { text-align: center; padding: 88px 20px; }
.ws-no-products h3 { font-size: 1.3rem; color: var(--navy); margin: 20px 0 12px; }
.ws-no-products p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Pagination ──────────────────────────────────────────────────────── */
.ws-pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 56px; flex-wrap: wrap;
}
.ws-page-btn {
  padding: 9px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-mid); background: var(--white);
  transition: all var(--transition);
}
.ws-page-btn:hover { border-color: var(--gold); color: var(--gold-dim); }
.ws-page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── SEO text block ──────────────────────────────────────────────────── */
.ws-seo-text {
  background: var(--white); padding: 56px 0;
  border-top: 1px solid var(--border);
}
.ws-seo-text h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--navy); margin-bottom: 16px;
}
.ws-seo-text p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 12px; max-width: 940px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ws-stats-grid  { grid-template-columns: repeat(3, 1fr); }
  .ws-process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .ws-process-grid::before { display: none; }
  .ws-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ws-testi-grid  { grid-template-columns: 1fr 1fr; }
  .ws-enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Medium screens: compress nav links a bit */
@media (max-width: 900px) {
  .ws-nav-link { font-size: 13px; padding: 8px 10px; }
  .ws-logo-name { font-size: 13px; }
  .ws-logo-img-wrap { padding: 4px 8px; }
  .ws-logo-img { height: 30px; }
}

@media (max-width: 768px) {
  /* Nav overlay */
  .ws-nav {
    display: none; position: fixed; inset: 0; top: 70px;
    background: rgba(10,18,30,.98); flex-direction: column;
    align-items: stretch; justify-content: flex-start;
    padding: 16px; gap: 4px; z-index: 850;
    backdrop-filter: blur(24px);
    overflow-y: auto;
  }
  .ws-nav.open { display: flex; }
  .ws-nav-link {
    font-size: 16px; padding: 14px 20px;
    width: 100%; text-align: left; border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .ws-hamburger { display: flex; }

  /* Header WA button — icon only on mobile */
  .ws-header-cta .ws-btn-wa .ws-btn-wa-label { display: none; }

  /* Announce — allow wrap on tiny screens */
  .ws-announce { font-size: 11.5px; padding: 7px 16px; line-height: 1.6; }

  /* Hero */
  .ws-hero { min-height: auto; }
  .ws-hero-content { padding: 64px 20px 80px; }
  .ws-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .ws-hero-actions .ws-btn { justify-content: center; }
  .ws-hero-trust { flex-direction: column; align-items: center; gap: 10px; }

  /* Stats — 3 per row, last 2 centered */
  .ws-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ws-stat-item { border-right: none; padding: 20px 12px; }
  .ws-stat-num { font-size: 1.9rem; }
  .ws-stat-label { font-size: 10.5px; }

  /* Process */
  .ws-process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ws-process-grid::before { display: none; }

  /* Testimonials */
  .ws-testi-grid { grid-template-columns: 1fr; }

  /* Enquiry form */
  .ws-enquiry-form-wrap { padding: 24px 18px; }
  .ws-form-row { grid-template-columns: 1fr; gap: 14px; }

  /* CTA */
  .ws-cta-strip { padding: 52px 0; }
  .ws-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .ws-cta-btns { justify-content: center; }

  /* Filter bar */
  .ws-filter-bar { position: static; }
  .ws-search-wrap { max-width: 100%; flex: 1; }

  /* Footer */
  .ws-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .ws-footer-copy { flex-direction: column; text-align: center; gap: 10px; }
  .ws-footer-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .ws-footer-bottom { padding-bottom: 110px; }

  /* Float WA — compact */
  .ws-float-wa { padding: 14px 18px; }
  .ws-float-wa .ws-float-label { display: none; }
}

@media (max-width: 560px) {
  /* Stats — 2+2+1 layout */
  .ws-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-stat-item:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); }

  /* Process — single column */
  .ws-process-grid { grid-template-columns: 1fr; }

  /* Footer — single column */
  .ws-footer-grid { grid-template-columns: 1fr; }

  /* Enquiry section heading */
  .ws-enquiry-info h2 { font-size: 1.5rem; }
}

@media (max-width: 420px) {
  .ws-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ws-cat-card { padding: 22px 12px 18px; }
  .ws-cat-icon { width: 56px; height: 56px; }

  .ws-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ws-product-body { padding: 12px 10px 10px; }
  .ws-product-name { font-size: 13px; }
  .ws-enquire-btn { font-size: 12px; padding: 9px 10px; gap: 5px; }
  .ws-price-val { font-size: 1.2rem; }

  .ws-why-grid { grid-template-columns: 1fr; }

  .ws-hero-h1 { font-size: 1.9rem; }
  .ws-hero-sub { font-size: 14px; }
  .ws-hero-eyebrow { font-size: 10.5px; letter-spacing: 1.5px; padding: 5px 14px; }

  .ws-float-wa { bottom: 18px; right: 18px; }
  .ws-cta-btns { flex-direction: column; align-items: stretch; }
  .ws-cta-btns .ws-btn { justify-content: center; }
}
