:root {
  --maroon: #6b1f1f;
  --maroon2: #561717;
  --gold: #d2a24b;
  --reg: #b7373b;
  --call: #c79a3b;
  --ink: #0f1c36;
  --card: #ffffff;

  /* ✅ Contact theme like screenshot */
  --pinkBg: #ffd1dc;
  --pinkCard: #ffe6ee;
  --pinkTitle: #d60b86;
  --pinkBtn: #d60b86;
}

html {
  scroll-behavior: smooth;
}

/* sticky header offset */
#home,
#profile,
#feature,
#working,
#contact {
  scroll-margin-top: 120px;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial;
  background: #fff;
  color: #111;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.sectionPad {
  padding: 60px 0;
  background: #f8c8dc; /* Light Pink */
}

.secHead {
  margin-bottom: 18px;
}
.secTitle {
  margin: 0 0 6px;
  font-size: 34px;
  color: var(--ink);
}
.secSub {
  margin: 0;
  color: #667;
  font-weight: 700;
}

/* =========================
   HEADER
========================= */
.royalHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--maroon), var(--maroon2));
  border-bottom: 1px solid rgba(210, 162, 75, 0.35);
}
.royalTopPattern,
.royalBottomPattern {
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    rgba(210, 162, 75, 0.22) 0 14px,
    rgba(210, 162, 75, 0.08) 14px 28px
  );
  opacity: 0.8;
}
.royalInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brandLeft {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}
.heart {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffcf6a;
  font-size: 26px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.brandText .brandName {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.brandText .brandSub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 14px;
}
.royalNav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.royalNav a {
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.6px;
  opacity: 0.92;
  padding: 8px 10px;
  border-radius: 12px;
}
.royalNav a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

/* =========================
   HERO
========================= */
.heroPoster {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
}
.heroImg {
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.heroShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
}
.heroContent {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 84px;
}
.heroLeft {
  max-width: 520px;
}
.heroTitle {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 0.98;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.heroTag {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  text-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}
.heroButtons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btnReg,
.btnCall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease;
}
.btnReg {
  background: var(--reg);
  color: #fff;
}
.btnReg:hover {
  transform: translateY(-2px);
}
.btnCall {
  background: var(--call);
  color: #fff;
  min-width: 360px;
}
.btnCall:hover {
  transform: translateY(-2px);
}

/* =========================
   PROFILE
========================= */
.profileGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pCard {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.pImg {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.pBody {
  padding: 14px;
}
.pName {
  font-weight: 900;
  font-size: 18px;
  color: #12264b;
}
.pMeta {
  margin-top: 4px;
  color: #667;
  font-weight: 700;
  font-size: 13px;
}
.pBadges {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(16, 185, 129, 0.15);
  color: #0f766e;
}
.badge2 {
  background: rgba(217, 119, 6, 0.15);
  color: #b45309;
}
.badge3 {
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
}
.pBtn {
  display: inline-flex;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #b7373b;
  color: #fff;
  font-weight: 900;
}

/* =========================
   FEATURE
========================= */
.featureWrap {
  padding: 70px 0;
  background: #f8c8dc; /* Light Pink */
}
.featureHead {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}
.featureTitle {
  margin: 0;
  font-size: 52px;
  font-weight: 900;
  color: #c2187a;
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
}
.featureSub {
  margin-top: 6px;
  font-size: 34px;
  font-weight: 900;
  color: #c2187a;
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
}
.featureText {
  margin: 18px auto 0;
  color: #111;
  font-weight: 700;
  line-height: 1.7;
  max-width: 720px;
}
.featureGrid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.fCard {
  padding: 12px;
}
.fIcon {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.4);
  display: grid;
  place-items: center;
}
.fIcon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.fTitle {
  font-size: 22px;
  font-weight: 1000;
  color: #12264b;
}
.fDesc {
  margin-top: 10px;
  color: #111;
  font-weight: 700;
  line-height: 1.6;
}

/* =========================
   WORKING
========================= */
.workWrap {
  padding: 80px 0;
  background: #f8c8dc; /* Light Pink */
}
.workTitle {
  margin: 0 0 22px;
  text-align: center;
  font-size: 48px;
  font-weight: 1000;
  color: #12264b;
}
.workCard {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 320px 1fr 1.2fr;
  gap: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.workLeft {
  display: grid;
  gap: 10px;
  align-content: start;
}
.wStep {
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.wStep.active {
  background: rgba(0, 0, 0, 0.03);
  color: #e11d48;
}
.wDot {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(203, 213, 225, 0.55);
  color: #0f172a;
}
.workMid {
  display: grid;
  place-items: center;
  padding: 16px;
}
.workMid img {
  width: min(260px, 80%);
  height: auto;
  border-radius: 14px;
}
.workRight {
  padding: 12px 10px;
}
.wHead {
  margin: 0 0 12px;
  color: #e11d48;
  font-size: 34px;
  font-weight: 1000;
}
.wPara {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-weight: 700;
}
.workMiniRow {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.workMini {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}
.workMiniText {
  font-weight: 800;
  color: #223;
}

/* =========================
   ✅ CONTACT (Screenshot style)
========================= */
/* ✅ CONTACT (white background) */
.contactWrap {
  padding: 70px 0;
  background: #f8c8dc; /* Light Pink */
}
.contactTitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 44px;
  font-weight: 1000;
  color: var(--pinkTitle);
}
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.contactCard {
  background: var(--pinkCard);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* left form */
.contactForm {
  display: grid;
  gap: 12px;
}
.cLabel {
  font-weight: 800;
  color: #0f1c36;
  font-size: 15px;
}
.cLabel span {
  color: #e11d48;
}
.cInput,
.cText {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(15, 28, 54, 0.18);
  background: #fff;
  padding: 12px 14px;
  outline: none;
  font-weight: 700;
  color: #111;
}
.cText {
  resize: none;
}
.cInput:focus,
.cText:focus {
  border-color: rgba(214, 11, 134, 0.55);
  box-shadow: 0 0 0 4px rgba(214, 11, 134, 0.12);
}
.cBtn {
  margin-top: 10px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: var(--pinkBtn);
  color: #fff;
  font-weight: 1000;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(214, 11, 134, 0.25);
}
.cBtn:hover {
  transform: translateY(-1px);
}

/* right info */
.infoHead {
  font-size: 22px;
  font-weight: 1000;
  color: var(--pinkTitle);
  margin-bottom: 16px;
}
.infoRow {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
}
.infoIcon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--pinkTitle);
  font-size: 18px;
}
.infoText {
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}
.infoLink {
  color: #111;
  font-weight: 900;
  text-decoration: underline;
}

/* =========================
   FOOTER (same)
========================= */
.mwFooter {
  padding: 70px 0 0;
  background:
    radial-gradient(
      circle at 20% 90%,
      rgba(219, 150, 255, 0.55),
      transparent 55%
    ),
    radial-gradient(
      circle at 95% 40%,
      rgba(166, 245, 255, 0.55),
      transparent 55%
    ),
    linear-gradient(135deg, #f7f9ff, #eaf2ff, #f4f7ff);
}
.mwFooterGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.4fr;
  gap: 60px;
  padding-bottom: 30px;
}
.mwTitle {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color: #152b55;
}
.mwSub {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  color: #2b3f73;
}
.mwText {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #1f2d3d;
}
.mwLinks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mwLinks li {
  margin: 0 0 14px;
}
.mwLinks a {
  color: #152b55;
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.25s;
}
.mwLinks a::before {
  content: "›";
  font-size: 18px;
  opacity: 0.8;
}
.mwLinks a:hover {
  color: #b7373b;
  transform: translateX(3px);
}
.mwEmail,
.mwWhats {
  color: #e11d48;
  font-weight: 800;
}
.mwJoin {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
  color: #152b55;
}
.mwSocial {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mwSocial a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  color: #152b55;
  font-size: 18px;
  transition: 0.25s;
}
.mwSocial a:hover {
  transform: translateY(-4px);
  background: #b7373b;
  color: #fff;
}
.mwFooterBottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  text-align: center;
  font-weight: 800;
  color: #556;
  background: rgba(255, 255, 255, 0.55);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .profileGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workCard {
    grid-template-columns: 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .brandText .brandName {
    font-size: 26px;
  }
  .royalNav {
    display: none;
  }
  .heroTitle {
    font-size: 48px;
  }
  .heroTag {
    font-size: 18px;
  }
  .btnCall {
    min-width: auto;
    width: 100%;
  }
  .mwFooterGrid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 520px) {
  .brandLeft {
    min-width: auto;
  }
  .heroContent {
    padding-bottom: 62px;
  }
  .heroTitle {
    font-size: 40px;
  }
  .btnReg,
  .btnCall {
    width: 100%;
  }
  .profileGrid {
    grid-template-columns: 1fr;
  }
  .featureTitle {
    font-size: 40px;
  }
  .featureSub {
    font-size: 28px;
  }
  .contactTitle {
    font-size: 34px;
  }
}
