/* =====================================================================
   UNRAVEL  style.css
   Merged & cleaned: original brand colours + new section styles
   Only contains rules for classes/IDs present in the live HTML
   ===================================================================== */

/* ── FONTS ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
    /* Original brand palette */
    --primary-yellow: #fcc419;
    --dark-text:      #1a1a1a;
    --light-bg:       #faf7f2;
    --white:          #ffffff;
    --grey-border:    #ddd;

    /* New teal accent palette */
    --teal:           #2A6B6B;
    --teal-dark:      #1C4A4A;
    --teal-light:     #E8F4F4;
    --num:            #89dbdb;
    --gold:           #C49A3C;
    --gold-light:     #FDF6E3;
    --cream:          #FAF7F2;
    --dark:           #1A2E2E;
    --mid:            #4A6060;
    --soft:           #8A9E9E;

    /* Typography */
    --font-display:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'Inter', sans-serif;

    /* Utilities */
    --radius:         16px;
    --shadow:         0 8px 32px rgba(26,46,46,0.10);
}

/* ── GLOBAL RESET ──────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    font-family: var(--font-body);
    line-height: 1.7;
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: sticky;
    top: 0;
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 107, 107, 0.12);
}

.logo img { height: 48px; }

/* Profile dropdown container */
#profileMenuContainer {
    position: relative;
    display: inline-block;
}

#profileMenu.hidden { display: none; }

#profileMenu {
    position: absolute;
    right: 0;
    top: 62px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    box-shadow: var(--shadow);
    z-index: 1000;
    min-width: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.menu-header {
    padding: 15px 20px;
    background: var(--teal-light);
}

.credit-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.menu-divider {
    height: 1px;
    background: #f0f0f0;
}

.menu-items { /* wrapper  no visual style needed */ }

.menu-btn {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.menu-btn i {
    width: 18px;
    color: var(--primary-yellow);
}

.menu-btn:hover {
    background-color: var(--teal-light);
    color: var(--teal-dark);
}

.logout-style { color: #e03131 !important; }
.logout-style i { color: #e03131 !important; }

/* Buttons */
.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(252, 196, 25, 0.35);
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 0 5% 0 8%;
    animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--primary-yellow);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: none;
}
.hero-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}



.hero-content p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 0.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 22px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
    display: inline-block;
}

.btn-primary-hero:hover {
    background: #e6b200;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 196, 25, 0.4);
}

.btn-ghost-hero {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
    display: inline-block;
}

.btn-ghost-hero:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2.4s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================================
   CONTAINER & FLEX SECTIONS  (original "Does this sound like you?")
   ===================================================================== */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.flex-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.text-container { padding: 20px; }

.text-container h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-container p {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 22px;
    text-align: justify;
}
.text-APPROACH { padding: 0px; padding-top: 40px;}

.text-APPROACH h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 22px;
}

.text-APPROACH p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: var(--font-body);
    
    color: var(--mid);
    text-align: justify;
}

.text-container ul {
    list-style: none;
    text-align: justify;
    padding: 0;
}

.text-container li {
    margin-bottom: 15px;
    position: relative;
    text-align: justify;
    padding-left: 30px;
    line-height: 1.6;
}

.text-container li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
    text-align: justify;
}

/* =====================================================================
   CYCLES SECTION  (dark background pattern chips)
   ===================================================================== */

.cycles-section {
    background: var(--dark);
    padding: 90px 5%;
}

.cycles-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.cycles-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cycles-text h2 span {
    color: var(--primary-yellow);
    font-style: italic;
}

.cycles-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.cycles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cycle-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 18px;
    transition: all 0.3s;
}

.cycle-chip:hover {
    background: rgba(252, 196, 25, 0.1);
    border-color: rgba(252, 196, 25, 0.3);
}

.cycle-chip .arrow {
    color: var(--primary-yellow);
    font-size: 0.7rem;
    margin: 0 4px;
}

.cycle-chip p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.cycle-chip strong { color: var(--white); }

/* =====================================================================
   ABOUT BEK SECTION
   ===================================================================== */

.about-section {
    background: var(--white);
    padding: 50px 50px ;
}

.about-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper { position: relative; }

.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    object-fit: contain;
    aspect-ratio: 864 / 1184;
    box-shadow: var(--shadow);
    display: block;
}

.about-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--teal);
    display: block;
}

.about-text { padding-top: 8px; }

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 22px;
}

.about-text h2 em {
    font-style: italic;
    color: var(--teal);
}

.about-text p { color: var(--mid); margin-bottom: 18px; text-align: justify;}

.about-quote {
    border-left: 3px solid var(--primary-yellow);
    padding: 14px 20px;
    margin-bottom: 24px;
    background: #fffbe6;
    border-radius: 0 10px 10px 0;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.cred-tag {
    background: var(--teal-light);
    color: var(--teal-dark);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cred-tag i {
    font-size: 0.75rem;
    color: var(--teal);
}

/* Shared teal CTA button */
.btn-teal {
    background: var(--teal);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 107, 107, 0.3);
}

/* =====================================================================
   THE PLAN  THREE STEPS
   ===================================================================== */

.plan-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: block;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
}

.section-header h2 em {
    font-style: italic;
    color: var(--teal);
}

.steps-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 34px;
    border: 1px solid rgba(42, 107, 107, 0.1);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--teal-light);
    transition: background 0.3s;
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-card:hover::before { background: var(--primary-yellow); }

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--num);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--mid);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.step-outcome {
    background: var(--teal-light);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--teal-dark);
    font-weight: 600;
}

.step-outcome i {
    margin-right: 6px;
    color: var(--teal);
}

/* =====================================================================
   WHO I WORK WITH
   ===================================================================== */

.who-section {
    padding: 100px 5%;
    background: var(--teal-light);
}

.who-inner { max-width: 1100px; margin: auto; }

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.who-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    border-top: 3px solid var(--teal-light);
    transition: all 0.3s;

}

.who-card:hover {
    border-top-color: var(--primary-yellow);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.who-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.who-icon i { color: var(--teal); font-size: 1.2rem; }

.who-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.who-card p {
    color: var(--mid);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}

/* =====================================================================
   FAQ SECTION
   ===================================================================== */

.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-item {
    background: var(--white);
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(42, 107, 107, 0.08);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--dark-text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 500;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
    margin-left: 24px;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding: 0 24px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer a.link {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 24px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

/* =====================================================================
   STAKES SECTION
   ===================================================================== */

.stakes-section {
    padding: 90px 5%;
    background: var(--white);
}

.stakes-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.stakes-card {
    border-radius: var(--radius);
    padding: 50px 44px;
}

.stakes-card.failure {
    background: #fff8f8;
    border: 1px solid #ffd5d5;
}

.stakes-card.success {
    background: var(--teal-light);
    border: 1px solid rgba(42, 107, 107, 0.2);
}

.stakes-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.stakes-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stakes-icon.red   { background: #ffe0e0; color: #c62828; }
.stakes-icon.green { background: rgba(42, 107, 107, 0.15); color: var(--teal); }

.stakes-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
}

.stakes-card ul { list-style: none; padding: 0; margin: 0; }

.stakes-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    line-height: 1.55;
    display: flex;
    gap: 10px;
    text-align: justify;
}

.stakes-card li:last-child { border-bottom: none; }

.stakes-card li i { margin-top: 2px; font-size: 0.8rem; flex-shrink: 0; }
.stakes-card.failure li i { color: #c62828; }
.stakes-card.success li i { color: var(--teal); }
.stakes-card.failure li   { color: #5a2020; }
.stakes-card.success li   { color: var(--teal-dark); }

/* =====================================================================
   SLIDING SCALE BANNER
   ===================================================================== */

.scale-banner {
    background: var(--teal);
    padding: 60px 5%;
    text-align: center;
}

.scale-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 14px;
}

.scale-banner h2 em { font-style: italic; }

.scale-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    text-align: justify;
}

.btn-gold {
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #e6b200;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.scale-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 18px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.main-footer {
    background: var(--dark);
    padding: 70px 5% 30px;
}

/* Three-column top grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 3fr;   /* brand | nav | contact | subscribe */
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

/* Brand column */
.footer-brand img {
    height: 44px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Nav column */
.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--primary-yellow); }

/* Contact column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon-link:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
    border-color: var(--primary-yellow);
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.3s ease;
    display: block;
}

.social-icon-link:hover .icon-svg { fill: var(--dark-text); }

/* Subscribe column */
.footer-subscribe h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-subscribe > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* Subscribe form  email + button in a row */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 320px;
}

#subscribeEmail {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px 8px 0 0;
    color: var(--white);
    font-size: 0.92rem;
    outline: none;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}

#subscribeEmail::placeholder { color: rgba(255, 255, 255, 0.35); }
#subscribeEmail:focus { border-color: var(--primary-yellow); }

.subscribe-form button {
    padding: 12px 20px;
    background: var(--primary-yellow);
    border: none;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark-text);
    transition: background 0.2s;
}

.subscribe-form button:hover { background: #e6b200; }

/* reCAPTCHA sits between input and button */
.recaptcha-wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0 0px;
    width: 200; 
     height: 140px;
     
}


.recaptcha-wrapper > div {
    transform: scale(0.88);
    transform-origin: left center;
}
.g-recaptcha > div {
     width: 200; 
     height:  100px;
     margin: 4px 0 8px;
}
.recaptcha-text {
    /* Set a specific font so the links and text match */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 320px;
    margin: 4px 0 8px;
    line-height: 1.4;
    /* This ensures the paragraph doesn't force children to blocks */
    display: block; 
    text-align: justify;
}

.recaptcha-text a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    /* Ensures the link stays in the same flow as the text */
    display: inline; 
    font-size: 11px;
}

/* Disclaimer strip */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    line-height: 1.6;
}

/* Bottom strip */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* =====================================================================
   RESPONSIVE DESIGN
   ===================================================================== */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 960px) {
    .cycles-inner,
    .about-inner,
    .stakes-inner { grid-template-columns: 1fr; gap: 50px; }

    .steps-grid,
    .who-grid    { grid-template-columns: 1fr 1fr; }

    .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; }

    .hero-content { padding: 0 6%; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content h2 { font-size: 1.5rem; }
    .hero-content p { font-size: 1.35rem; }

    .hero-ctas { flex-direction: column; }
    .btn-primary-hero,
    .btn-ghost-hero { text-align: center; }

    .flex-section { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .text-container { padding: 0; text-align: justify;}
    .text-container li { text-align: left; text-align: justify;}
    .image-container img { max-width: 100%; }

    .cycles-grid { grid-template-columns: 1fr; }
    .steps-grid,
    .who-grid    { grid-template-columns: 1fr; }
    .stakes-inner { grid-template-columns: 1fr; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .subscribe-form { max-width: 100%; }

    .recaptcha-wrapper { justify-content: flex-start; }

    .faq-question { font-size: 0.95rem; padding: 16px 18px; }
    .faq-answer   { padding: 0 18px; }
    .faq-item.active .faq-answer { padding: 0 18px 20px; }

    .stakes-card { padding: 36px 26px; }
}

@media (max-width: 480px) {
    
    .about-inner { gap: 36px; }
}

/* =====================================
   booking page
   ===================================== */
   
        /* Modal Styles */
        .intro-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .intro-modal {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        .intro-modal h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #1f2937;
        }
        
        .intro-modal p {
            color: #6b7280;
            margin-bottom: 20px;
        }
        
        .intro-modal label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #374151;
        }
        
        .intro-modal input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 16px;
            margin-bottom: 16px;
            transition: border-color 0.2s;
        }
        
        .intro-modal input:focus {
            outline: none;
            border-color: #f59e0b;
        }
        
        .intro-modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }
        
        .intro-modal-buttons button {
            flex: 1;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
        }
         /* Page Hero Banner */
        .page-banner {
            background: var(--dark);
            padding: 70px 5% 60px;
            text-align: center;
        }
        .page-banner .eyebrow {
            font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
        }
        .page-banner h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300; color: white; margin-bottom: 14px;
        }
        .page-banner h1 em { font-style: italic; }
        .page-banner p {
            color: rgba(255,255,255,0.7); max-width: 520px;
            margin: 0 auto; font-size: 1rem;
        }

        /* Intro CTA strip */
        .intro-strip {
            background: var(--teal); padding: 22px 5%;
            text-align: center;
        }
        .intro-strip p {
            color: rgba(255,255,255,0.9); font-size: 0.95rem;
            display: flex; align-items: center; justify-content: center;
            gap: 10px; flex-wrap: wrap;
        }
        .intro-strip strong { color: white; }
        .intro-strip a {
            color: var(--gold); font-weight: 700;
            text-decoration: underline; text-underline-offset: 3px;
            cursor: pointer;
        }
        
        .btn-modal-cancel {
            background: #f3f4f6;
            color: #374151;
            border: none;
        }
        
        .btn-modal-cancel:hover {
            background: #e5e7eb;
        }
        
        .btn-modal-submit {
            background: #f59e0b;
            color: white;
            border: none;
        }
        
        .btn-modal-submit:hover {
            background: #d97706;
        }
        
        .btn-modal-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .intro-modal small {
            display: block;
            color: #9ca3af;
            font-size: 13px;
            margin-top: -10px;
            margin-bottom: 16px;
        }
    
.free-booking {
  border: 2px solid #2f8a45 !important;
}

  .free-badge {
            display: inline-block; background: #E8F5E9; color: #2E7D32;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
            margin-bottom: 12px;
        }

/* Apply border to all booking cards */
.booking-card {
  border: 1px solid #8b6f4e;   /* brown border */
border-style: solid !important;
}

 /* Sliding Scale section */
        .sliding-scale-section {
            background: var(--teal); padding: 60px 5%; margin-top: 45px;
        }
        .sliding-scale-inner {
            max-width: 900px; margin: auto;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
        }
        .scale-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 300;
            color: white; margin-bottom: 14px;
        }
        .scale-text h2 em { font-style: italic; }
        .scale-text p { color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 20px; }
        .scale-cta {
            background: var(--gold); color: white;
            padding: 14px 32px; border-radius: 50px;
            font-weight: 700; border: none; cursor: pointer;
            font-family: var(--font-body); font-size: 0.95rem;
            transition: all 0.25s; display: inline-block; text-decoration: none;
        }
        .scale-cta:hover { background: #a8823a; transform: translateY(-2px); }
        .scale-principles { display: flex; flex-direction: column; gap: 16px; }
        .scale-principle {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px; padding: 18px 22px;
            display: flex; gap: 14px; align-items: flex-start;
        }
        .scale-principle i { color: var(--gold); margin-top: 2px; }
        .scale-principle strong { color: white; font-size: 0.9rem; display: block; margin-bottom: 4px; }
        .scale-principle span { color: rgba(255,255,255,0.7); font-size: 0.83rem; }
/* Mobile Styles for Sliding Scale */
@media screen and (max-width: 768px) {
    .sliding-scale-section {
        padding: 40px 20px; /* Reduces side padding on mobile */
    }

    .sliding-scale-inner {
        /* Changes from 2 columns to 1 row stacking */
        grid-template-columns: 1fr; 
        gap: 40px; /* Slightly tighter gap for mobile */
        text-align: center; /* Optional: centers text for a better mobile look */
    }

    .scale-principle {
        /* Ensures the text inside the principles stays left-aligned even if the header is centered */
        text-align: left;
    }

    .scale-cta {
        width: 100%; /* Makes the button full-width on mobile for easier tapping */
        text-align: center;
    }
}

        .extra-card {
    transition: opacity 0.5s ease-in-out;
}

/* Ensure the grid doesn't collapse weirdly */
#pricing-section {
    align-items: stretch;
}
      

/* --- FAQ Section Styling --- */
.faq-section {
    background-color: #fdfaf5; 
    padding: 60px 0;
}

.faq-grid {
    max-width: 800px;
    /* This centers the whole FAQ block on the page */
    margin: 0 auto; 
    /* Adding padding so it doesn't touch the screen edges on mobile */
    padding: 0 60px; 
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #f2f2f2;
}

.faq-question {
    width: 100%;
    padding: 10px 20px;
    background: none;
    border: none;
    display: flex;
    /* This pushes the text to the left and the icon to the right */
    justify-content: space-between; 
    align-items: center;
    font-size: 1.1rem;
    color: #2d2d2d;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: #f1b90d;
    transition: transform 0.3s ease;
    /* Adding a little margin to the left of the icon so it isn't cramped */
    margin-left: 60px; 
}

.faq-answer {
    /* The key to the "not working" fix is making sure max-height is 0 initially */
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding: 0 60px;
    color: #666;
}

/* When the JavaScript adds the .active class, this runs */
.faq-item.active .faq-answer {
    max-height: 500px; /* Increased to fit your longer PIPEDA text */
    padding-top: 10px;
    padding-bottom: 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 600px) {
  .faq-question {
    padding: 18px 18px;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-grid {
   
    padding: 0 10px; 
}
}


/* Menu */
#profileMenuContainer {
  position: relative;
  display: inline-block;
}
#profileMenu.hidden {
    display: none;
}

/* Ensure the menu is positioned correctly when it DOES show */
#profileMenu {
    position: absolute;
    right: 0;
    top: 60px; /* Adjust based on your header height */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 220px;
    border-radius: 8px;
}

.menu-header {
    padding: 15px 20px;
}

.credit-badge {
    display: inline-block;
    background: #fff9db; /* Soft yellow */
    color: #856404;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
}

.menu-btn {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-btn i {
    width: 18px;
    color: #fcc419; /* Your primary yellow */
}

.menu-btn:hover {
    background-color: #f8f9fa;
    color: #000;
}

.logout-style {
    color: #e03131 !important;
}

.logout-style i {
    color: #e03131 !important;
}
/* cal */

cal-embed {
  width: 100%;
  height: 650px;
  border: none;
}


 .cal-intro-bar {
            background: var(--teal); padding: 44px 5%;
            display: flex; justify-content: space-between; align-items: center;
            gap: 40px; flex-wrap: wrap;
        }
        .cal-intro-text h1 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 300; color: white; margin-bottom: 8px;
        }
        .cal-intro-text h1 em { font-style: italic; }
        .cal-intro-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 500px; }
        .cal-reassurance {
            display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
        }
        .cal-reassurance-item {
            display: flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.85); font-size: 0.88rem;
        }
        .cal-reassurance-item i { color: var(--gold); width: 16px; }

.calendar-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
/* Bookings Section */
#my-bookings-section {
    margin-top: 50px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bookings Header */
.bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.bookings-header h2 {
    font-size: 1.8rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.bookings-header h2 i {
    color: var(--primary-yellow, #f4c542);
}

.booking-count {
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Card Status Variations */
.booking-card.booking-active {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
}

.booking-card.booking-soon {
    border-color: #ff9800;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.booking-card.booking-upcoming {
    border-color: #e8e8e8;
}

.booking-card.booking-past {
    opacity: 0.7;
    border-color: #e0e0e0;
}

/* Card Header */
.booking-card-header {
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.booking-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.booking-title h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-active {
    background: #e8f5e9;
    color: #2e7d32;
    animation: pulse 2s infinite;
}

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

.badge-soon {
    background: #fff3e0;
    color: #ef6c00;
}

.badge-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-past {
    background: #f5f5f5;
    color: #757575;
}

/* Card Body */
.booking-card-body {
    padding: 20px;
}

.booking-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    padding: 12px;
    background: #fafafa;
    border-radius: 10px;
}

.booking-detail:last-child {
    margin-bottom: 0;
}

.booking-detail i {
    font-size: 1.2rem;
    color: var(--primary-yellow, #f4c542);
    margin-top: 2px;
    min-width: 20px;
}

.booking-detail > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Card Footer */
.booking-card-footer {
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

/* Join Call Button */
.btn-join-call {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.btn-join-call:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.btn-join-call i {
    font-size: 1.2rem;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.btn-action {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-reschedule {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-reschedule:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-2px);
}

.btn-cancel {
    background: #ffebee;
    color: #c62828;
}

.btn-cancel:hover {
    background: #c62828;
    color: white;
    transform: translateY(-2px);
}

/* Locked Notice */
.locked-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fff3e0;
    border-radius: 8px;
    color: #ef6c00;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Calendar Sync Link */
.calendar-sync-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.calendar-sync-link:hover {
    border-color: #4285f4;
    color: #4285f4;
    transform: translateY(-2px);
}

/* No Bookings Card */
.no-bookings-card {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.no-bookings-card i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-bookings-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-bookings-card p {
    color: #888;
    margin-bottom: 25px;
}

/* Error Card */
.error-card {
    background: #ffebee;
    border: 2px solid #ef5350;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.error-card i {
    font-size: 3rem;
    color: #c62828;
    margin-bottom: 15px;
}

.error-card h3 {
    color: #c62828;
    margin-bottom: 10px;
}

.error-card p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .bookings-grid {
        grid-template-columns: 1fr;
    }
    
    .bookings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .booking-actions {
        flex-direction: column;
    }
}
#booking-widget-container {
    background: white;
    border-radius: 20px;
    min-height: 600px; /* Essential for the widget to show */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
    overflow: hidden;
}

.calendar-intro {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
}


.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.slot-btn {
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #fcc419;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}

.slot-btn:hover {
    background: #fcc419;
    color: white;
}

.booking-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.day-name { font-weight: bold; text-align: center; font-size: 0.8em; color: #666; padding-bottom: 5px; }
.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: default;
    font-size: 0.9em;
}
.day.available {
    background-color: #d4edda;
    color: #155724;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid #c3e6cb;
}
/* Fix for calendar-day class */
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: default;
    font-size: 0.9em;
    background: #f3f4f6;
    color: #9ca3af;
}

.calendar-day.available {
    background-color: #d1fae5 !important;
    color: #065f46 !important;
    cursor: pointer !important;
    font-weight: bold !important;
    border: 1px solid #10b981 !important;
}

.calendar-day.available:hover {
    background-color: #10b981 !important;
    color: #fff !important;
}

.calendar-day-empty {
    background: transparent;
    color: transparent;
}
.day.available:hover { background-color: #28a745; color: #fff; }
.day.unavailable { color: #ccc; }
.time-slots-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

/* Full screen overlay to dim the background */
#custom-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* The actual card */
.custom-modal-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease-out;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.btn-cancel {
    background: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-confirm {
    background: #ffc107; /* Your yellow brand color */
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.my-bookings-list {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
}
.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.booking-item:last-child { border-bottom: none; }
.btn-reschedule {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    margin-right: 5px;
}
.btn-cancel-small {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
}
.notice-text {
    font-size: 0.75em;
    color: #888;
    font-style: italic;
}
/* Profile */
/* Profile Page Styling */
/* Profile Page Styling */
:root {
    --sidebar-width: 260px;
    --primary-yellow: #f4c542;
    --green-active: #4CAF50;
}

.profile-layout {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

/* Sidebar Styling */
.profile-sidebar {
    width: var(--sidebar-width);
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-nav li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
    margin: 4px 0;
}

.profile-nav li a:hover {
    color: #000;
    background: #fff9e6;
    border-left-color: var(--primary-yellow);
}

.profile-nav li a.active {
    color: #000;
    border-left-color: var(--primary-yellow);
    background: #fff9e6;
    font-weight: 600;
}

/* Content Styling */
.profile-main {
    flex: 1;
    min-width: 0;
}

.profile-main section {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    scroll-margin-top: 100px;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-main section:nth-child(1) { animation-delay: 0.1s; }
.profile-main section:nth-child(2) { animation-delay: 0.2s; }
.profile-main section:nth-child(3) { animation-delay: 0.3s; }
.profile-main section:nth-child(4) { animation-delay: 0.4s; }

section h2 {
    font-size: 1.8rem;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #222;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.info-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    font-weight: 600;
    margin: 0;
    color: #333;
    font-size: 1.05rem;
}

/* Edit Mode Styling */
.edit-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.edit-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.hidden {
    display: none !important;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #e8e8e8;
    color: #666;
}

.status-active {
    background: #e8f5e9;
    color: var(--green-active);
    border: 2px solid var(--green-active);
}

#membership .info-card:has(.status-active) {
    border: 2px solid var(--green-active);
    background: #f1f8f4;
}

/* Buttons */
.btn-yellow, .btn-outline {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-yellow {
    background: var(--primary-yellow);
    color: #000;
}
/* Modern Aesthetic Cancel Button */
#cancelSubBtn {
    background-color: transparent;
    color: #ff4d4d; /* Modern Soft Red */
    border: 1.5px solid #ff4d4d;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 8px; /* Smooth rounded corners */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#cancelSubBtn:hover {
    background-color: #ff4d4d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
    transform: translateY(-1px);
}

#cancelSubBtn:active {
    transform: translateY(0);
}

#cancelSubBtn:disabled {
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
    background-color: transparent;
    box-shadow: none;
}

.btn-yellow:hover {
    background: #e6b930;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 197, 66, 0.3);
}

.btn-outline {
    background: white;
    border: 2px solid #ddd;
    color: #333;
}

.btn-outline:hover {
    border-color: #999;
    background: #f9f9f9;
}

/* Password Form Styling */
.password-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.3s;
}

.password-input-wrapper:focus-within {
    border-color: var(--primary-yellow);
    background: white;
}

.password-input-wrapper i.fa-lock {
    color: #999;
    margin-right: 10px;
}

.password-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 1rem;
    color: #333;
}

.password-input-wrapper input:focus {
    outline: none;
}

.toggle-password {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #333;
}

#intake .info-card {
    border-left: 4px solid var(--primary-yellow);
    padding: 25px;
}

#intake-action {
    margin-top: 20px;
}

#security p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        padding: 10px 0;
    }
    
    .profile-nav {
        display: flex;
        overflow-x: auto;
        gap: 5px;
        padding: 0 10px;
    }
    
    .profile-nav li {
        flex-shrink: 0;
    }
    
    .profile-nav li a {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 20px;
    }
    
    .profile-nav li a.active,
    .profile-nav li a:hover {
        border-left: none;
        border-bottom-color: var(--primary-yellow);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-main section {
        padding: 25px 20px;
    }
    
    .password-form {
        max-width: 100%;
    }
}

/* Toast Notification Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 250px;
    margin-bottom: 10px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    border-left: 5px solid #ccc;
    animation: slideIn 0.3s ease forwards;
    transition: opacity 0.3s ease;
}

.toast.success { border-left-color: #10b981; } /* Emerald Green */
.toast.error { border-left-color: #ef4444; }   /* Rose Red */
.toast.info { border-left-color: #3b82f6; }    /* Blue */

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-fade-out {
    opacity: 0;
}
