/* =======================================================
   WEBJEANNIE – ULTRA LUXURY 3D GLOW (NAVY + GOLD)
   Style A: Deep 3D • Gold Reflections • Spotlight Auras
======================================================= */

/* ==============
   THEME TOKENS
   ============== */
:root {
  --wj-bg: #040515;
  --wj-bg-alt: #070f27;
  --wj-bg-soft: #101731;

  --wj-primary: #e8c16d;
  --wj-primary-soft: rgba(232, 193, 109, 0.16);
  --wj-primary-strong: #f8e4a9;

  --wj-text: #f7f7ff;
  --wj-text-soft: #aeb6d6;

  --wj-border-soft: rgba(255, 255, 255, 0.1);

  --wj-radius-lg: 20px;
  --wj-radius-xl: 28px;

  --wj-shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.9);
  --wj-shadow-subtle: 0 18px 50px rgba(0, 0, 0, 0.7);

  --wj-gold-glow-soft: 0 0 14px rgba(248, 226, 164, 0.45);
  --wj-gold-glow-strong: 0 0 26px rgba(248, 226, 164, 0.85);
}

/* ==============
   RESET / GLOBAL
   ============== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--wj-text);
  background:
    radial-gradient(circle at 10% -12%, #364b8f 0, transparent 55%),
    radial-gradient(circle at 88% -8%, #442468 0, transparent 58%),
    radial-gradient(circle at 50% 100%, #0e142b 0, #020313 70%);
  background-attachment: fixed;
  animation: bgDrift 40s ease-in-out infinite alternate;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==============
   LAYOUT
   ============== */

.wj-container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.wj-section {
  padding: 5rem 0;
  position: relative;
  isolation: isolate;
}

/* soft spotlight aura behind sections */
.wj-section::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58%;
  max-width: 560px;
  height: 75%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(248, 226, 164, 0.16), transparent 55%),
    radial-gradient(circle, rgba(63, 86, 163, 0.4), transparent 70%);
  opacity: 0.6;
  filter: blur(32px);
  pointer-events: none;
  z-index: -1;
  animation: auraPulse 15s ease-in-out infinite;
}

.wj-section-alt {
  background:
    radial-gradient(circle at 0% 0%, #202b67 0, transparent 52%),
    radial-gradient(circle at 100% 0%, #262553 0, transparent 58%),
    #050616;
}

.wj-grid-3 {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ==============
   HEADER / NAV
   ============== */

.wj-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(22px) saturate(150%);
  background:
    linear-gradient(
      to bottom,
      rgba(5, 8, 24, 0.96),
      rgba(5, 8, 24, 0.86),
      transparent
    ),
    radial-gradient(circle at 0 0, rgba(248, 226, 164, 0.12), transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease,
    transform 0.3s ease;
}

.wj-header.scrolled {
  background:
    radial-gradient(circle at 0 0, rgba(248, 226, 164, 0.16), transparent 55%),
    rgba(5, 8, 24, 0.98);
  border-color: rgba(243, 216, 148, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  transform: translateY(0);
}

.wj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

/* LOGO */

.wj-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.wj-logo-mark {
  background: conic-gradient(from 215deg,
    #fff8dd,
    #f0cd7d,
    #b9862e,
    #f6e7b9,
    #fff8dd);
  color: #11131f;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.9),
    var(--wj-gold-glow-soft);
  position: relative;
  overflow: hidden;
}

.wj-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.4)
  );
  mix-blend-mode: soft-light;
}

.wj-logo-text {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* NAV LINKS */

.wj-nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.wj-nav-links a {
  position: relative;
  color: #c7ceec;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.92;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.wj-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f9e39c, #e8c16d);
  box-shadow: var(--wj-gold-glow-soft);
  transition: width 0.28s ease;
  border-radius: 999px;
}

.wj-nav-links a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.wj-nav-links a:hover::after {
  width: 22px;
}

.wj-nav-links a.active {
  color: #ffffff;
}

.wj-nav-links a.active::after {
  width: 30px;
}

/* NAV CTA */

.wj-nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--wj-primary);
  color: var(--wj-primary-strong) !important;
  margin-left: 0.9rem;
  box-shadow:
    0 0 0 1px rgba(232, 193, 109, 0.2),
    var(--wj-gold-glow-soft);
  background:
    radial-gradient(circle at 0 0, rgba(249, 233, 185, 0.32), transparent 60%),
    rgba(4, 8, 24, 0.96);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.wj-nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(
    120deg,
    transparent 0,
    rgba(255, 255, 255, 0.7) 40%,
    transparent 80%
  );
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.wj-nav-cta:hover::before {
  transform: translateX(130%);
  opacity: 1;
}

.wj-nav-cta:hover {
  background: linear-gradient(120deg, #f8e2a4, #e8c16d);
  color: #11131f !important;
  box-shadow: var(--wj-gold-glow-strong);
  transform: translateY(-1px);
}

.wj-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--wj-text);
  font-size: 1.6rem;
}

/* ==============
   BUTTONS
   ============== */

.wj-btn {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--wj-primary), var(--wj-primary-strong));
  color: #11131f;
  box-shadow: var(--wj-shadow-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.wj-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(
    120deg,
    transparent 0,
    rgba(255, 255, 255, 0.6) 40%,
    transparent 80%
  );
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.3s ease;
}

.wj-btn:hover::before {
  transform: translateX(130%);
  opacity: 1;
}

.wj-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9), var(--wj-gold-glow-soft);
}

.wj-btn:active {
  transform: translateY(0);
  box-shadow: var(--wj-shadow-subtle);
}

.wj-btn-outline {
  background: radial-gradient(circle at top left, rgba(248, 230, 184, 0.12), transparent);
  border: 1px solid var(--wj-primary);
  color: var(--wj-primary-strong);
}

.wj-btn-outline::before {
  display: none;
}

.wj-btn-outline:hover {
  background: rgba(11, 17, 40, 0.97);
}

.wj-btn-ghost {
  background: radial-gradient(circle at top left, rgba(248, 230, 184, 0.08), transparent),
    rgba(8, 13, 36, 0.96);
  border: 1px solid var(--wj-border-soft);
  color: var(--wj-text-soft);
}

.wj-btn-ghost::before {
  display: none;
}

.wj-btn-ghost:hover {
  background: rgba(14, 21, 50, 0.98);
  color: #ffffff;
}

.wj-btn-full {
  width: 100%;
  justify-content: center;
}

/* ==============
   SECTION HEADERS
   ============== */

.wj-section-head {
  margin-bottom: 2.3rem;
}

.wj-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wj-primary-strong);
  opacity: 0.95;
}

.wj-section-head h1,
.wj-section-head h2 {
  margin: 0.4rem 0 0.25rem;
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.4rem);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
}

.wj-section-head p {
  margin: 0.2rem 0 0;
  color: var(--wj-text-soft);
  max-width: 33rem;
}

/* ==============
   HERO
   ============== */

.wj-hero {
  padding: 5.8rem 0 4.2rem;
}

.wj-hero-grid {
  display: grid;
  gap: 3.4rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
}

.wj-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 228, 176, 0.85);
  color: var(--wj-primary-strong);
  background: radial-gradient(circle at top left,
      rgba(248, 230, 184, 0.2),
      rgba(7, 11, 32, 0.98));
}

.wj-hero-title {
  font-size: clamp(2.5rem, 1.7rem + 2.5vw, 3.35rem);
  line-height: 1.06;
  margin: 1.1rem 0 0.8rem;
}

.wj-hero-title span {
  color: var(--wj-primary-strong);
  text-shadow: var(--wj-gold-glow-soft);
}

.wj-hero-sub {
  color: var(--wj-text-soft);
  max-width: 34rem;
  font-size: 0.98rem;
}

.wj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0;
}

.wj-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.88rem;
  color: var(--wj-text-soft);
}

/* HERO 3D CARD */

.wj-hero-card {
  background:
    radial-gradient(circle at top left, #323d74 0, transparent 55%),
    radial-gradient(circle at bottom, #0b1025 0, #050616 78%);
  border-radius: 30px;
  padding: 1.1rem 1.1rem 1.6rem;
  box-shadow: var(--wj-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.3s ease-out, box-shadow 0.35s ease-out;
  position: relative;
  overflow: hidden;
  animation: floatCard 10s ease-in-out infinite;
}

.wj-hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 200deg,
    transparent 0,
    rgba(248, 226, 164, 0.36),
    transparent 65%
  );
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.wj-hero-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg) scale(1.015);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.95),
    var(--wj-gold-glow-soft);
}

/* small "browser" bar style */
.wj-hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

/* ==============
   TRUST BAR
   ============== */

.wj-trust {
  padding-bottom: 3rem;
}

.wj-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--wj-text-soft);
}

.wj-trust-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.wj-pill-soft {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  background: rgba(5, 10, 31, 0.96);
}

/* ==============
   CARDS & GRIDS
   ============== */

.wj-card {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(155deg, #1b2342, #050816 60%);
  border-radius: var(--wj-radius-lg);
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--wj-border-soft);
  box-shadow: var(--wj-shadow-subtle);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease,
    border-color 0.28s ease, background 0.35s ease;
}

.wj-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 210deg,
    transparent 0,
    rgba(248, 226, 164, 0.35),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  mix-blend-mode: soft-light;
}

.wj-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.95), var(--wj-gold-glow-soft);
  border-color: rgba(243, 216, 148, 0.9);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(150deg, #242f57, #050816 60%);
}

.wj-card:hover::before {
  opacity: 1;
}

.wj-card h3 {
  margin: 0 0 0.35rem;
}

.wj-card p {
  font-size: 0.9rem;
  color: var(--wj-text-soft);
}

.wj-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0,
      rgba(248, 226, 164, 0.28),
      rgba(6, 10, 28, 0.9));
  color: var(--wj-primary-strong);
  margin-bottom: 0.9rem;
  box-shadow: var(--wj-gold-glow-soft);
}

/* Process */

.wj-process-grid {
  display: grid;
  gap: 1.7rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.wj-process-step {
  padding: 1.5rem 1.4rem;
  border-radius: var(--wj-radius-lg);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.8);
}

.wj-step-number {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wj-primary-strong);
}

/* Portfolio */

.wj-portfolio-grid {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wj-portfolio-item {
  border-radius: var(--wj-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(250, 229, 176, 0.28), transparent 55%),
    linear-gradient(150deg, #222a51, #050816 60%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--wj-shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.wj-portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 226, 164, 0.18),
    transparent 48%,
    rgba(0, 0, 0, 0.7)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.wj-portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), var(--wj-gold-glow-soft);
  border-color: rgba(243, 216, 148, 0.9);
}

.wj-portfolio-item:hover::after {
  opacity: 1;
}

.wj-portfolio-thumb {
  height: 170px;
  background: radial-gradient(circle at top left, #f6e1a5 0, #2a2f5d 45%, #050616 80%);
  position: relative;
  overflow: hidden;
}

.wj-portfolio-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(2, 4, 14, 0.94);
  color: var(--wj-primary-strong);
  border: 1px solid rgba(243, 216, 148, 0.8);
}

/* CTA band */

.wj-cta-band {
  margin-top: 3.4rem;
  padding: 1.8rem 1.9rem;
  border-radius: var(--wj-radius-xl);
  background:
    radial-gradient(circle at 0 0, #fff6d5 0, #f1d68b 45%, #e4bb5f 80%),
    #f2d68e;
  color: #181104;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.85),
    inset 0 0 18px rgba(255, 255, 255, 0.4);
}

/* Testimonials */

.wj-testimonials-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.wj-testimonial {
  position: relative;
  padding-top: 1.3rem;
}

.wj-quote-mark {
  position: absolute;
  top: -0.4rem;
  left: 0.1rem;
  font-size: 2.6rem;
  opacity: 0.12;
}

.wj-testimonial p {
  font-size: 0.9rem;
  color: var(--wj-text-soft);
}

.wj-testimonial strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

/* Blog */

.wj-blog-label {
  font-size: 0.75rem;
  color: var(--wj-primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.wj-link {
  display: inline-flex;
  margin-top: 0.65rem;
  font-size: 0.83rem;
  color: var(--wj-primary-strong);
}
.wj-link::after {
  content: "→";
  margin-left: 0.3rem;
}

/* ==============
   FORMS / FIELDS
   ============== */

.wj-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

.wj-field span {
  color: var(--wj-text-soft);
}

.wj-field input,
.wj-field select,
.wj-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 1rem;
  background: rgba(2, 6, 23, 0.92);
  color: var(--wj-text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.wj-field textarea {
  resize: vertical;
  min-height: 120px;
}

.wj-field input:focus,
.wj-field select:focus,
.wj-field textarea:focus {
  outline: none;
  border-color: rgba(243, 216, 148, 0.95);
  box-shadow: 0 0 0 1px rgba(243, 216, 148, 0.7);
  background: rgba(5, 10, 31, 0.98);
}

/* Contact page specific */

.wj-contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

.wj-contact-info h2,
.wj-contact-form h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.wj-contact-info p {
  color: var(--wj-text-soft);
  font-size: 0.9rem;
}

.wj-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.wj-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 226, 164, 0.14);
  border: 1px solid rgba(248, 226, 164, 0.4);
  font-size: 1rem;
}

.wj-contact-item h4 {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
}

.wj-contact-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--wj-text-soft);
}

.wj-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.wj-contact-social a {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 11, 30, 0.96);
  color: var(--wj-text-soft);
}
.wj-contact-social a:hover {
  color: #fff;
  border-color: rgba(243, 216, 148, 0.9);
}

.wj-map-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pricing */

.wj-price {
  font-size: 1.8rem;
  margin: 0.4rem 0 0.2rem;
  font-weight: 600;
}

.wj-price-sub {
  font-size: 0.9rem;
  color: var(--wj-text-soft);
  margin-bottom: 0.9rem;
}

.wj-card-popular {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(248, 226, 164, 0.35), transparent 60%),
    linear-gradient(155deg, #231a37, #050816 60%);
}

.wj-popular-tag {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #f2d88e;
  color: #241909;
}

/* Comparison table */

.wj-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  min-width: 560px;
}

.wj-table th,
.wj-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.wj-table th {
  font-weight: 500;
  color: #f8f1dd;
  background: rgba(15, 18, 40, 0.95);
}

.wj-table tr:nth-child(odd) td {
  background: rgba(8, 12, 32, 0.9);
}

/* ==============
   FOOTER
   ============== */

.wj-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.6rem;
}

.wj-footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.6rem 0 1.7rem;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
}

.wj-footer-text {
  font-size: 0.86rem;
  color: var(--wj-text-soft);
  max-width: 21rem;
}

.wj-footer h4 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

.wj-footer a {
  display: block;
  font-size: 0.85rem;
  color: var(--wj-text-soft);
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.wj-footer a:hover {
  color: var(--wj-primary-strong);
}

.wj-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
}

.wj-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--wj-text-soft);
}

/* ==============
   MODAL
   ============== */

.wj-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 18, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 1.5rem;
}

.wj-modal-backdrop.active {
  display: flex;
}

.wj-modal {
  background: radial-gradient(circle at top, #1b264a, #050816);
  border-radius: 22px;
  max-width: 640px;
  width: 100%;
  padding: 1.7rem 1.5rem 1.4rem;
  border: 1px solid rgba(243, 216, 148, 0.75);
  box-shadow: var(--wj-shadow-soft);
  position: relative;
}

.wj-modal-close {
  position: absolute;
  right: 0.9rem;
  top: 0.8rem;
  border: none;
  background: none;
  color: var(--wj-text-soft);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ==============
   SCROLL REVEAL
   ============== */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* stagger */
.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }

/* ==============
   RESPONSIVE
   ============== */

@media (max-width: 880px) {
  .wj-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wj-hero-visual {
    order: -1;
  }

  .wj-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .wj-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .wj-footer-bottom-inner {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .wj-nav-links {
    position: absolute;
    right: 1.5rem;
    top: 56px;
    background: rgba(5, 9, 28, 0.98);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .wj-nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wj-nav-toggle {
    display: inline-flex;
  }

  .wj-nav-cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .wj-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .wj-section {
    padding: 4rem 0;
  }

  .wj-hero {
    padding-top: 5.1rem;
  }

  .wj-hero-title {
    font-size: 2.35rem;
  }

  .wj-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .wj-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==============
   KEYFRAMES
   ============== */

@keyframes bgDrift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 18% 86%; }
}

@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes auraPulse {
  0%   { opacity: 0.35; transform: scale(0.96); }
  50%  { opacity: 0.8; transform: scale(1.06); }
  100% { opacity: 0.35; transform: scale(0.96); }
}

/* ============================
   CONTACT FORM – FIXED + PREMIUM
=============================== */

.wj-contact-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.wj-contact-form h2 {
    margin-bottom: 1.2rem;
}

/* FORM GROUP */
.wj-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.3rem;
}

.wj-form-group label {
    font-size: 0.9rem;
    color: var(--wj-text-soft);
    margin-bottom: 0.35rem;
}

/* INPUTS + TEXTAREA */
.wj-form-group input,
.wj-form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(10, 14, 35, 0.95);
    color: var(--wj-text);
    font-size: 0.92rem;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.wj-form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* INPUT FOCUS EFFECT */
.wj-form-group input:focus,
.wj-form-group textarea:focus {
    border-color: rgba(243, 216, 148, 0.9);
    background: rgba(18, 22, 40, 0.98);
    box-shadow: 0 0 10px rgba(243, 216, 148, 0.35);
}

/* FULL WIDTH BUTTON UPDATE */
.wj-btn-full {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 18px;
}

/* BUTTON FIX: Rounded Golden Bar */
.wj-btn-full.wj-btn {
    background: linear-gradient(135deg, #f8e8b5, #e8c16d);
    color: #1d1405;
    box-shadow: 0 12px 35px rgba(248, 226, 164, 0.45);
    font-weight: 600;
}

.wj-btn-full.wj-btn:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(248, 226, 164, 0.6);
}

/* MOBILE FIX */
@media (max-width: 500px) {
    .wj-contact-form {
        padding: 1.5rem;
    }

    .wj-btn-full {
        font-size: 0.95rem;
        padding: 0.85rem;
    }
}

/* ===========================================
   PORTFOLIO GRID
=========================================== */
.wj-portfolio-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

/* ===========================================
   PORTFOLIO CARD
=========================================== */
.wj-portfolio-item {
    background: radial-gradient(circle at 20% 20%, rgba(255, 239, 187, 0.22), rgba(24, 27, 56, 0.85) 60%, #050616 100%);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.70);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    backdrop-filter: blur(6px);
}

/* Glow on hover */
.wj-portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 216, 148, 0.85);
    box-shadow: 0 30px 80px rgba(248, 226, 164, 0.35);
}

/* ===========================================
   THUMBNAIL / TOP PANEL
=========================================== */
.wj-portfolio-thumb {
    height: 170px;
    background: radial-gradient(circle at 25% 25%, #ffe9b4 0%, #132050 45%, #050616 80%);
    opacity: 0.8;
    filter: blur(0.4px);
    transition: opacity .3s ease, filter .3s ease;
}

.wj-portfolio-item:hover .wj-portfolio-thumb {
    opacity: 1;
    filter: blur(0px);
}

/* ===========================================
   TAG BADGE
=========================================== */
.wj-portfolio-tag {
    position: absolute;
    bottom: 145px;
    left: 18px;
    background: rgba(5, 7, 16, 0.85);
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    color: var(--wj-primary-strong);
    font-size: 0.75rem;
    border: 1px solid rgba(243, 216, 148, 0.75);
    box-shadow: 0 0 10px rgba(248, 226, 164, 0.25);
}

/* ===========================================
   CARD BODY
=========================================== */
.wj-portfolio-body {
    padding: 1.3rem 1.4rem 1.5rem;
}

.wj-portfolio-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.22rem;
}

.wj-portfolio-body p {
    margin: 0 0 0.6rem;
    color: var(--wj-text-soft);
    line-height: 1.45;
}

/* Inline list (UI/UX – WordPress – Branding) */
.wj-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: var(--wj-text-soft);
    font-size: 0.82rem;
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 600px) {
    .wj-portfolio-grid {
        gap: 1.4rem;
    }
    .wj-portfolio-item {
        border-radius: 18px;
    }
    .wj-portfolio-thumb {
        height: 150px;
    }
}

/* ============================
   VIEW PORTFOLIO BUTTON — LUX GOLD GHOST
   ============================ */

.wj-btn-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.9rem 1.9rem;

    font-size: 0.96rem;
    font-weight: 500;
    color: #cfd6f7;

    background: rgba(10, 15, 35, 0.55);
    border: 1px solid rgba(232, 193, 109, 0.38);
    border-radius: 999px;

    backdrop-filter: blur(8px);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* Gold highlight shine */
.wj-btn-ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 237, 179, 0.35),
        transparent
    );
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    z-index: 1;
}

/* Border glow */
.wj-btn-ghost::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 225, 150, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

/* Hover Effects */
.wj-btn-ghost:hover {
    color: #ffffff;
    border-color: rgba(243, 216, 148, 0.85);
    background: rgba(18, 24, 55, 0.75);
    transform: translateY(-2px);
}

.wj-btn-ghost:hover::before {
    transform: translateX(130%);
}

.wj-btn-ghost:hover::after {
    opacity: 1;
}

/* ================================
   WEBJEANNIE PREMIUM PRICING CARDS
   (UPDATED WITH HIGHLIGHTED PRICING)
   ================================ */

.wj-card {
    background: rgba(8, 10, 26, 0.92);
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(255, 224, 150, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.78);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Glow background aura */
.wj-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255, 224, 150, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}

.wj-card:hover {
    transform: translateY(-10px) scale(1.025);
    border-color: rgba(255, 225, 170, 0.7);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

.wj-card:hover::before {
    opacity: 1;
}

/* Popular Card */
.wj-card-popular {
    border: 1px solid rgba(255, 215, 120, 0.9) !important;
    background: linear-gradient(140deg, rgba(40, 35, 70, 0.7), rgba(8, 10, 26, 0.95));
    box-shadow: 0 28px 75px rgba(255, 215, 120, 0.25);
    position: relative;
}

.wj-popular-tag {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    padding: 0.32rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffe7a8, #e8c16d);
    color: #1b1202;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(255, 220, 160, 0.45);
}

/* ================================
   🔥 HIGHLIGHTED GOLD PRICING
   ================================ */

.wj-price {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;

    /* Gold gradient text */
    background: linear-gradient(90deg, #f8e9c8, #e8c16d, #f6dc9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow */
    text-shadow: 0 0 18px rgba(255, 225, 160, 0.45);
    letter-spacing: 0.5px;

    /* Animation */
    animation: priceGlow 3.2s ease-in-out infinite alternate;
}

/* Animated gold glow */
@keyframes priceGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 225, 160, 0.25);
    }
    100% {
        text-shadow: 0 0 26px rgba(255, 225, 160, 0.55);
    }
}

/* Hover pop */
.wj-card:hover .wj-price {
    transform: scale(1.09);
    transition: 0.3s ease;
}

/* Price subtitle */
.wj-price-sub {
    font-size: 0.92rem;
    color: var(--wj-text-soft);
    margin-bottom: 1.1rem;
}

/* Bullet styling */
.wj-list {
    margin-top: 0.7rem;
}
.wj-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #bfc8e2;
    position: relative;
    padding-left: 18px;
}
.wj-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 1px;
    color: #e8c16d;
    font-size: 0.7rem;
}

/* Full button */
.wj-btn-full {
    margin-top: 1.4rem;
    padding: 0.95rem;
    font-size: 0.95rem;
}

/* Glowing button hover */
.wj-btn-full:hover {
    box-shadow: 0 0 28px rgba(255, 225, 150, 0.65);
}

/* FORM SELECT (Dropdown) */
.wj-form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 220, 150, 0.25);

    color: #f1f1f1;
    font-size: 1rem;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
    transition: 0.25s ease;
}

/* Hover effect */
.wj-form-group select:hover {
    border-color: rgba(255, 220, 150, 0.45);
}

/* Focus Glow */
.wj-form-group select:focus {
    border-color: #e8c16d;
    box-shadow: 0 0 8px rgba(255, 220, 150, 0.45);
}

/* Text inside options */
.wj-form-group select option {
    background: #0a0e23;
    color: #ffffff;
    padding: 10px;
}

.wj-logo img, 
.wj-full-logo, 
.wj-logo-img {
    height: 40px; /* adjust size as needed */
    width: auto;
    display: inline-block;
    vertical-align: middle;
border-radius: 50%;
}

/* PREMIUM SOFT GLOW LOGO */
.wj-hero-logo-wrap {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    /* soft glow */
    box-shadow:
        0 0 25px rgba(255, 220, 120, 0.35),
        0 0 55px rgba(255, 220, 120, 0.25),
        0 0 85px rgba(255, 220, 120, 0.18);
}

/* Logo image */
.wj-hero-logo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;

    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.35);
}

/* simple floating */
@keyframes glowFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.wj-hero-logo-wrap {
    animation: glowFloat 4s ease-in-out infinite;
}

/* mobile size */
@media (max-width: 768px) {
    .wj-hero-logo-wrap {
        width: 180px;
        height: 180px;
        padding: 15px;
    }
}

.wj-hero-logo-wrap {
    margin-left: 60px; /* adjust value as needed */
}