/* ====== Website Services Page - Royal Queen Brand Theme ====== */
.ws-page {
  --ws-royal-blue: #142C8E;
  --ws-deep-blue:  #0B1648;
  --ws-gold:       #C9A227;
  --ws-rose-gold:  #B76E79;
  --ws-ivory:      #FBFAF7;
  --ws-ink:        #12131A;
  --ws-muted:      #5A5F73;
  --ws-card:       rgba(255,255,255,0.86);
  --ws-stroke:     rgba(18,19,26,0.10);
  --ws-shadow:     0 18px 50px rgba(11,22,72,0.18);
}

.ws-page {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ws-ink);
}

.ws-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ====== Topbar ====== */
.ws-topbar {
  background: linear-gradient(90deg, var(--ws-deep-blue), var(--ws-royal-blue));
  color: #fff;
  font-size: 14px;
}
.ws-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.ws-topbar__link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.ws-topbar__link:hover { border-bottom-color: #fff; }

/* ====== Hero ====== */
.ws-hero {
  padding: 54px 0 32px;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(201,162,39,0.18), transparent 55%),
              radial-gradient(900px 600px at 80% 5%, rgba(183,110,121,0.16), transparent 55%),
              linear-gradient(180deg, var(--ws-ivory), #ffffff 40%, #F6F7FB 100%);
}
.ws-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.ws-brandline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ws-brandname {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.ws-crown svg {
  width: 26px;
  height: 26px;
  fill: var(--ws-gold);
  filter: drop-shadow(0 6px 14px rgba(201,162,39,0.25));
}

.ws-hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  color: var(--ws-ink);
}
.ws-accent { color: var(--ws-royal-blue); }
.ws-lead {
  color: var(--ws-muted);
  font-size: 16.5px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.ws-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ws-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ws-badge {
  border: 1px solid var(--ws-stroke);
  background: rgba(255,255,255,0.7);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ws-muted);
}

/* ====== Glass Card ====== */
.ws-hero__card .ws-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.72));
  border: 1px solid var(--ws-stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--ws-shadow);
  position: sticky;
  top: 80px;
  backdrop-filter: blur(10px);
}

.ws-muted { color: var(--ws-muted); }
.ws-small { font-size: 13px; }
.ws-fineprint { font-size: 12px; color: var(--ws-muted); margin-top: 10px; }
.ws-center { text-align: center; }

.ws-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 14px;
}
.ws-checklist li {
  padding-left: 26px;
  position: relative;
  margin: 10px 0;
  color: var(--ws-ink);
}
.ws-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ws-gold);
  font-weight: 900;
}

.ws-priceLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--ws-stroke);
  border-radius: 14px;
  padding: 12px;
  background: rgba(20,44,142,0.03);
  margin: 12px 0 14px;
}
.ws-price {
  font-weight: 900;
  font-size: 22px;
  color: var(--ws-deep-blue);
}
.ws-divider {
  width: 1px;
  height: 36px;
  background: var(--ws-stroke);
}

/* ====== Buttons ====== */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
  cursor: pointer;
  font-size: inherit;
}
.ws-btn:active { transform: translateY(1px); }

.ws-btn--primary {
  background: linear-gradient(90deg, var(--ws-royal-blue), var(--ws-deep-blue));
  color: #fff;
  box-shadow: 0 12px 24px rgba(20,44,142,0.20);
}
.ws-btn--primary:hover {
  box-shadow: 0 16px 34px rgba(20,44,142,0.28);
  color: #fff;
  text-decoration: none;
}

.ws-btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ws-deep-blue);
  border-color: var(--ws-stroke);
}
.ws-btn--ghost:hover {
  background: rgba(255,255,255,0.9);
  text-decoration: none;
  color: var(--ws-deep-blue);
}

.ws-btn--full { width: 100%; }

/* ====== Sections ====== */
.ws-section {
  padding: 54px 0;
}
.ws-section--alt {
  background: linear-gradient(180deg, rgba(20,44,142,0.04), rgba(201,162,39,0.05));
  border-top: 1px solid var(--ws-stroke);
  border-bottom: 1px solid var(--ws-stroke);
}

.ws-section__head {
  margin-bottom: 18px;
}
.ws-section__head h2 {
  margin: 0 0 6px;
  font-size: 28px;
  color: var(--ws-ink) !important;
}
.ws-section__head p {
  margin: 0;
  color: var(--ws-muted) !important;
}

/* ====== Grids & Cards ====== */
.ws-grid {
  display: grid;
  gap: 16px;
}
.ws-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ws-grid--3 { grid-template-columns: repeat(3, 1fr); }

.ws-featureCard {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--ws-stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(11,22,72,0.08);
}
.ws-featureCard h3 { margin: 0 0 8px; color: var(--ws-ink) !important; }
.ws-featureCard p { margin: 0; color: var(--ws-muted) !important; line-height: 1.45; }

/* Pricing Cards */
.ws-pricingCard {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--ws-stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11,22,72,0.10);
  position: relative;
}
.ws-pricingCard--featured {
  border-color: rgba(201,162,39,0.45);
  box-shadow: 0 18px 46px rgba(201,162,39,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
}
.ws-ribbon {
  position: absolute;
  right: 14px;
  top: 14px;
  background: linear-gradient(90deg, var(--ws-gold), var(--ws-rose-gold));
  color: #111;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(183,110,121,0.18);
}
.ws-pricingCard h3 { color: var(--ws-ink) !important; }
.ws-tag {
  font-size: 12px;
  color: var(--ws-muted) !important;
  margin-bottom: 8px;
}
.ws-pricing {
  margin: 12px 0 10px;
}
.ws-big {
  font-size: 34px;
  font-weight: 950;
  color: var(--ws-deep-blue);
}
.ws-bullets {
  margin: 12px 0 16px;
  padding-left: 18px;
  color: var(--ws-muted);
  line-height: 1.55;
}

.ws-noteBox {
  margin-top: 18px;
  border: 1px solid rgba(20,44,142,0.12);
  background: rgba(255,255,255,0.72);
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ws-ink);
}

/* Steps */
.ws-step {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--ws-stroke);
  border-radius: 16px;
  padding: 16px;
}
.ws-step h3 { color: var(--ws-ink) !important; }
.ws-step p { color: var(--ws-muted) !important; }
.ws-step__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, var(--ws-royal-blue), var(--ws-deep-blue));
  box-shadow: 0 10px 22px rgba(20,44,142,0.22);
  margin-bottom: 10px;
}

/* Form */
.ws-formWrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 700px;
  margin: 0 auto;
}

.ws-form {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--ws-stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11,22,72,0.10);
}

.ws-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ws-deep-blue);
}

.ws-form input,
.ws-form select,
.ws-form textarea {
  font: inherit;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(18,19,26,0.14);
  background: rgba(255,255,255,0.9);
  outline: none;
  width: 100%;
}
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus {
  border-color: rgba(20,44,142,0.35);
  box-shadow: 0 0 0 4px rgba(20,44,142,0.10);
}

.ws-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.ws-sideCard {
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--ws-stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11,22,72,0.08);
}
.ws-sideCard h3 { margin-top: 0; }

.ws-miniList {
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ws-miniList__item {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--ws-stroke);
  background: rgba(20,44,142,0.03);
  color: var(--ws-muted);
}

.ws-callout {
  border-radius: 16px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(201,162,39,0.16), rgba(183,110,121,0.10));
  border: 1px solid rgba(201,162,39,0.22);
}
.ws-pill {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,26,0.12);
  background: rgba(255,255,255,0.7);
  font-weight: 800;
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .ws-hero__inner { grid-template-columns: 1fr; }
  .ws-hero__card .ws-glass { position: relative; top: 0; }
  .ws-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ws-grid--3 { grid-template-columns: 1fr; }
  .ws-formWrap { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .ws-grid--4 { grid-template-columns: 1fr; }
  .ws-row { grid-template-columns: 1fr; }
  .ws-topbar__inner { flex-direction: column; align-items: flex-start; }
}
