/* ============================================================
   ANJALI SAKHARKAR — Global Stylesheet
   ============================================================ */

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: #FFF8F0;
    color: #2D1239;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* Blazor loading */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem;
}
.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}
.loading-progress circle:last-child {
    stroke: #E8338C;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}
.loading-progress-text::after {
    content: var(--blazor-load-percentage-text, "Loading");
    display: block;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #5A3B6E;
}
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; font-size: 1.25rem; line-height: 1; position: absolute; right: .75rem; top: .5rem; }

/* ---- Animations ---- */
@keyframes floaty    { 0%, 100% { transform: translateY(0); }   50% { transform: translateY(-16px); } }
@keyframes floaty2   { 0%, 100% { transform: translateY(0); }   50% { transform: translateY(12px);  } }
@keyframes spinSlow  { from { transform: rotate(0deg); }         to   { transform: rotate(360deg); } }
@keyframes pulseRing { 0%   { transform: scale(1);    opacity: .55; }
                       100% { transform: scale(1.18); opacity: 0;   } }

/* ---- Inputs ---- */
input { font-family: 'Outfit', sans-serif; }
input::placeholder { color: #B49DC4; }
.form-input {
    border: 2px solid #EADBF5;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    color: #2D1239;
    outline: none;
    background: #FDFBFF;
    transition: border-color .2s;
    width: 100%;
}
.form-input:focus { border-color: #E8338C; }

/* ---- NAVBAR ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,248,240,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,51,140,.12);
}
.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-logo-icon {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(from 210deg, #FF6B1A, #E8338C, #8B2FC9, #FF6B1A);
    display: flex; align-items: center; justify-content: center;
}
.nav-logo-inner { width: 16px; height: 16px; border-radius: 50%; background: #FFF8F0; }
.nav-logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 21px; font-weight: 800; letter-spacing: -.5px; color: #2D1239; }
.nav-logo-text .grad { background: linear-gradient(100deg,#FF6B1A,#E8338C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
    background: none; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
    color: #2D1239; padding: 6px 2px; transition: color .2s;
}
.nav-link:hover { color: #E8338C; }
.nav-link.active { color: #E8338C; }
.nav-join {
    background: linear-gradient(100deg, #FF6B1A, #E8338C);
    color: #fff; border: none; border-radius: 999px;
    padding: 12px 24px; font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    box-shadow: 0 6px 18px rgba(232,51,140,.35);
    transition: transform .2s, box-shadow .2s;
}
.nav-join:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,51,140,.45); }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 4px 8px; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: #2D1239; border-radius: 3px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
    display: none; flex-direction: column; gap: 2px;
    padding: 10px 24px 16px;
    background: rgba(255,248,240,.97);
    border-top: 1px solid rgba(232,51,140,.1);
}
.mobile-nav .nav-link { padding: 10px 4px; font-size: 17px; display: block; }
.mobile-nav .nav-join { margin-top: 8px; display: block; text-align: center; padding: 14px 24px; }
.mobile-nav-open { display: flex; }

/* ---- FOOTER ---- */
.site-footer { background: #1E0833; padding: 56px 24px 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(from 210deg,#FF6B1A,#E8338C,#8B2FC9,#FF6B1A); display: flex; align-items: center; justify-content: center; }
.footer-logo-inner { width: 14px; height: 14px; border-radius: 50%; background: #1E0833; }
.footer-logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: #fff; }
.footer-logo-text .grad { background: linear-gradient(100deg,#FF6B1A,#E8338C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-link { background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 15px; color: #C9AEDD; padding: 4px 0; transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 14px; color: #9A7BB5; }

/* ---- SHARED BUTTON STYLES ---- */
.btn-primary {
    background: linear-gradient(100deg, #FF6B1A, #E8338C); color: #fff; border: none; border-radius: 999px;
    padding: 18px 34px; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 28px rgba(232,51,140,.4); transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232,51,140,.5); }
.btn-secondary {
    background: transparent; color: #8B2FC9; border: 2px solid #8B2FC9; border-radius: 999px;
    padding: 16px 30px; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer; transition: background .2s;
}
.btn-secondary:hover { background: rgba(139,47,201,.08); }
.btn-cta {
    background: linear-gradient(100deg,#FF6B1A,#E8338C); color: #fff; border: none; border-radius: 999px;
    padding: 18px 36px; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 28px rgba(232,51,140,.4); transition: transform .2s;
}
.btn-cta:hover { transform: translateY(-2px); }
.btn-submit {
    background: linear-gradient(100deg,#FF6B1A,#E8338C); color: #fff; border: none; border-radius: 999px;
    padding: 18px; font-family: 'Outfit', sans-serif; font-size: 17.5px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 26px rgba(232,51,140,.35); transition: transform .2s, box-shadow .2s; width: 100%;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,51,140,.45); }
.btn-outline-pink {
    background: none; border: 2px solid #E8338C; color: #E8338C; border-radius: 999px;
    padding: 12px 26px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s;
}
.btn-outline-pink:hover { background: rgba(232,51,140,.07); }

/* ---- CARD HOVER EFFECTS ---- */
.card-lift { transition: transform .25s ease; }
.card-lift:hover { transform: translateY(-4px); }
.card-lift-shadow { transition: transform .25s ease, box-shadow .25s ease; }
.card-lift-shadow:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(45,18,57,.13) !important; }
.cta-lift { transition: transform .25s ease, box-shadow .25s ease; cursor: pointer; }
.cta-lift:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(139,47,201,.35) !important; }
.dark-card { transition: background .2s; }
.dark-card:hover { background: rgba(255,255,255,.11) !important; }

/* ---- HERO SECTION ---- */
.hero-section { position: relative; overflow: hidden; padding: 90px 24px 110px; }
.hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-content { display: flex; flex-direction: column; gap: 26px; }
.hero-badge {
    display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid rgba(139,47,201,.25); border-radius: 999px;
    padding: 8px 18px; box-shadow: 0 4px 14px rgba(45,18,57,.06);
}
.hero-badge-dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(120deg,#FF6B1A,#E8338C); }
.hero-badge-text { font-size: 14.5px; font-weight: 600; color: #6B3FA0; letter-spacing: .3px; }
.hero-h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 62px; line-height: 1.04; font-weight: 800; letter-spacing: -1.5px; margin: 0; }
.hero-h1 .grad { background: linear-gradient(100deg,#FF6B1A,#E8338C 55%,#8B2FC9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-p { font-size: 21px; line-height: 1.55; color: #5A3B6E; margin: 0; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-orb { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }

/* ---- PILLARS ---- */
.pillars-section { background: linear-gradient(100deg,#FF6B1A,#E8338C 52%,#8B2FC9); padding: 54px 24px; }
.pillars-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.pillar { display: flex; flex-direction: column; gap: 8px; color: #fff; border-left: 3px solid rgba(255,255,255,.45); padding-left: 22px; }
.pillar-step { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 2.5px; opacity: .85; }
.pillar-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; }
.pillar-desc { font-size: 16px; opacity: .9; line-height: 1.5; }

/* ---- SECTION HEADER ---- */
.section-tag { font-size: 15px; font-weight: 700; letter-spacing: 2.5px; }
.section-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; letter-spacing: -1px; line-height: 1.08; margin: 0; }
.section-lead { font-size: 19px; line-height: 1.6; color: #5A3B6E; margin: 0; }

/* ---- EMOTION / INSIDE STORY CARDS ---- */
.emotion-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 32px rgba(45,18,57,.08); display: flex; flex-direction: column; }
.emotion-card-header { height: 110px; display: flex; align-items: center; padding-left: 28px; }
.emotion-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.emotion-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; font-weight: 800; margin: 0; }
.emotion-card-text { font-size: 16px; line-height: 1.6; color: #5A3B6E; margin: 0; }

/* ---- FAQ ---- */
.faq-item { background: #fff; border-radius: 18px; box-shadow: 0 6px 20px rgba(45,18,57,.06); overflow: hidden; }
.faq-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    background: none; border: none; cursor: pointer; padding: 22px 26px;
    font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #2D1239; text-align: left;
}
.faq-chev { font-size: 24px; color: #E8338C; font-weight: 600; flex-shrink: 0; }
.faq-body { margin: 0; padding: 0 26px 24px; font-size: 16.5px; line-height: 1.65; color: #5A3B6E; }

/* ---- JOIN SECTION ---- */
.join-section { background: linear-gradient(120deg,#FF6B1A,#E8338C 48%,#7B2FBE); padding: 100px 24px; position: relative; overflow: hidden; }
.join-inner { position: relative; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.join-lhs { display: flex; flex-direction: column; gap: 22px; color: #fff; }
.join-tag { font-size: 15px; font-weight: 700; letter-spacing: 2.5px; opacity: .9; }
.join-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 52px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.05; margin: 0; }
.join-desc { font-size: 18.5px; line-height: 1.65; margin: 0; opacity: .95; max-width: 480px; }
.join-pricing {
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
    border-radius: 22px; padding: 26px 28px; display: flex; flex-direction: column; gap: 12px;
    max-width: 480px; backdrop-filter: blur(6px);
}
.join-price-row { display: flex; align-items: baseline; gap: 12px; }
.join-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 42px; font-weight: 800; }
.join-price-original { font-size: 18px; text-decoration: line-through; opacity: .7; }
.join-price-badge { background: #FFC93C; color: #6B3E00; font-size: 13.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.join-features { display: flex; flex-direction: column; gap: 8px; font-size: 16px; }
.join-feature { display: flex; gap: 10px; align-items: center; }
.join-dot { width: 7px; height: 7px; border-radius: 50%; background: #FFC93C; flex-shrink: 0; }
.join-rhs { background: #fff; border-radius: 28px; padding: 42px 38px; box-shadow: 0 30px 70px rgba(43,10,77,.35); }
.join-form { display: flex; flex-direction: column; gap: 18px; }
.join-form-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 800; margin: 0; }
.join-form-sub { font-size: 16px; color: #5A3B6E; margin: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14.5px; font-weight: 700; color: #3D2052; }
.form-error { margin: 0; font-size: 13.5px; color: #D7263D; min-height: 16px; }
.join-note { margin: 0; font-size: 13.5px; color: #A586BC; text-align: center; }
.join-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: 30px 10px; }
.success-icon {
    width: 78px; height: 78px; border-radius: 50%;
    background: linear-gradient(120deg,#1FA97A,#8CD44A);
    display: flex; align-items: center; justify-content: center;
}
.success-check { width: 30px; height: 16px; border-left: 5px solid #fff; border-bottom: 5px solid #fff; transform: rotate(-45deg); margin-top: -8px; }
.success-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; margin: 0; }
.success-desc { font-size: 17px; line-height: 1.6; color: #5A3B6E; margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .nav-links { gap: 16px; }
    .nav-link { font-size: 14px; }
    .nav-join { padding: 10px 18px; font-size: 14px; }
    .pillars-inner { grid-template-columns: 1fr; }
    .hero-h1 { font-size: 48px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-orb { display: none; }
    .hero-h1 { font-size: 40px; letter-spacing: -1px; }
    .hero-p { font-size: 18px; }
    .hero-section { padding: 60px 20px 70px; }

    .join-inner { grid-template-columns: 1fr; }
    .join-h2 { font-size: 38px; }
    .join-section { padding: 70px 20px; }

    .about-photo-col { max-width: 100%; }
    .two-col-grid { grid-template-columns: 1fr !important; }
    .shreejani-criteria { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .nav-container { padding: 10px 16px; }
    .nav-logo-text { font-size: 17px; }
    .hero-h1 { font-size: 32px; }
    .join-h2 { font-size: 32px; }
    .join-rhs { padding: 28px 20px; }
    .section-h2 { font-size: 32px !important; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns button { width: 100%; }
}
