/* =============================================
   MITI MAYETRI — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');


:root {
  --maroon:      rgb(149,54,29);
  --maroon-dark: rgb(120,40,20);
  --maroon-light:rgb(170,70,45);
  --gold:        #C8963C;
  --gold-light:  #E8B96A;
  --btn-text:    rgb(251,234,203);
  --cream:       #FDF8F2;
  --cream-dark:  #F5EDE0;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4040;
  --text-light:  #7A6A6A;
  --white:       #FFFFFF;
  --border:      #E8D8C8;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Playfair Display', serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --shadow-soft: 0 4px 24px rgba(123,28,28,0.08);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: 52px; font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ── Top Bar ── */
.top-bar {
  background: var(--maroon);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}
.top-bar span { margin: 0 6px; color: var(--gold-light); }

/* ── Navbar ── */
.navbar {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 240, 1) 100%);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--maroon); }
.logo-sub  { font-size: 10px; color: var(--text-light); letter-spacing: 0.08em; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgb(149, 54, 29);
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: Lato, sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon-dark); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1.5px solid var(--maroon);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.btn-login:hover { background: var(--maroon); color: var(--white); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: var(--btn-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-1px); }
.btn-primary .heart { color: var(--btn-text); font-size: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--maroon);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--maroon);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }

/* ── Section Wrapper ── */
.section { padding: 80px 60px; }
.section-narrow { max-width: 700px; margin: 0 auto; text-align: center; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: var(--maroon); margin-bottom: 14px; }
.section-header p  { font-size: 15px; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* ── Feature Icons ── */
.icon-circle {
  height: 64px;
    background-image: linear-gradient(to right bottom in oklab, #FBEACB 0%, #FBEACB 100%);
    width: 64px;
    margin: 0 auto 24px;
    color: #95361D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s all ease;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ── Stars ── */
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

/* ── Badge / Checkmark ── */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); }
.check-item::before { content: '✓'; color: var(--maroon); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Footer ── */
footer {
  /* background: var(--cream-dark); */
  padding: 60px 60px 30px;
  /* border-top: 1px solid var(--border); */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 { font-family: var(--font-display); font-size: 15px; color: #fbeacb; margin-bottom: 16px; font-weight: 600; }
.footer-col p  { font-size: 13px; color: #fbeacb; line-height: 1.8; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: #fbeacb; transition: color 0.2s; }
/* .footer-col ul li a:hover { color: var(--maroon); } */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fbeacb;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo-icon {
  width: 36px; height: 36px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
}
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--maroon); }
.footer-tagline { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }

/* ── Inner Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 560px; margin: 0 auto; position: relative; }
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ── Help Button ── */
.help-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--maroon);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(123,28,28,0.3);
  z-index: 999;
  transition: background 0.2s;
}
.help-btn:hover { background: var(--maroon-dark); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .navbar { padding: 12px 24px; }
  .nav-links { display: none; }
  .section  { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
  .page-hero { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}



/* ANN */
.utility-bar-sections-announcement-bar {
  background-image: url('announment-back.png');
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: .2;
  display: block !important;
  position: absolute;
  top: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.announcement-bar__message {
    text-align: center;
    /* padding: 1rem 0; */
    margin: 0;
    min-height: 2.5rem;
}
.utility-bar {
  position: relative;
  background-image: linear-gradient(to right in oklab, rgb(122, 43, 23) 0%, rgb(149, 54, 29) 50%, rgb(122, 43, 23) 100%);
}
.utility-bar .page-width.utility-bar__grid {
    z-index: 9;
    position: relative;
}
.utility-bar p.announcement-bar__message.h5 {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #fbeacb;
    display: flex;
    font-family: "Playfair Display";
}
.utility-bar span.svg__wrappper {
    width: 18px;
    display: inline-flex;
    height: 18px;
}

.utility-bar span.svg__wrappper svg {
  fill: currentColor;
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.announcement-bar {
    color: #fbeacb;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.plan-icon .icon-circle {
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: 0;
}
.absolute.inset-0.opacity-\[0\.03\].pointer-events-none {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.03;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
img.w-full.h-full.object-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    object-fit: cover;
}
.footer-background-set
{
position: relative;
    background: #95361d;
}

/* ── ANNOUNCEMENT MARQUEE ── */
.marquee-section {
  background:linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 240, 1) 100%);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: maroon;
  letter-spacing: 0.03em;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(251, 234, 203);
  opacity: 0.6;
  flex-shrink: 0;
}
.marquee-heart {
  color: rgb(251, 234, 203);
  font-size: 13px;
  opacity: 0.8;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
div#footer-placeholder {
    position: relative;
    z-index: 2;
}

.rte p {
    margin-bottom: 16px;
}

.rte h3 {
    margin-bottom: 16px;
}

.rte ul {
    margin-bottom: 16px;
}