/* ============================================
   Ho'oponopono Healing — Dr. Misha Malhi
   Color Theme: Soft Purple / Violet
   ============================================ */

:root {
    --purple:       #9b7bc4;
    --purple-dark:  #6b4c8a;
    --purple-deep:  #3d2260;
    --purple-light: #c5b3d9;
    --lavender:     #e8dff5;
    --lavender-mid: #d4c5f9;
    --white:        #ffffff;
    --off-white:    #faf8fc;
    --light:        #f5f2f9;
    --gray:         #a09aad;
    --dark:         #3a2e4a;
    --gold:         #d4af37;
    --whatsapp:     #25D366;
    --telegram:     #0088cc;

    --ff-head: 'Cormorant Garamond', serif;
    --ff-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --radius: 16px;
    --shadow: 0 10px 40px rgba(107, 76, 138, 0.15);
    --shadow-hover: 0 20px 60px rgba(107, 76, 138, 0.28);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--dark); line-height: 1.8; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; font-family: var(--ff-body); transition: var(--transition); }
ul { list-style: none; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4 { font-family: var(--ff-head); color: var(--purple-dark); line-height: 1.25; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION SHARED ===== */
section { padding: 80px 0; }
.section-title { font-size: 2.6rem; text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--gray); font-style: italic; font-size: 1.15rem; margin-bottom: 3rem; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    position: fixed; top: 0; width: 100%; z-index: 999;
    box-shadow: 0 2px 20px rgba(107,76,138,0.08);
}
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; flex-direction: column; }
.logo-name { font-family: var(--ff-head); font-size: 1.4rem; color: var(--purple-dark); font-weight: 700; line-height: 1.1; letter-spacing: 0.3px; }
.logo-tag  { font-size: 0.7rem; color: var(--purple); letter-spacing: 0.8px; text-transform: uppercase; margin-top: 2px; }
.nav-cta { background: var(--purple) !important; color: #fff !important; border-radius: 20px !important; padding: 0.45rem 1.1rem !important; }
.nav-cta:hover { background: var(--purple-dark) !important; }
.nav-menu  { display: flex; gap: 0.3rem; }
.nav-menu a { color: var(--dark); font-size: 0.95rem; font-weight: 500; padding: 0.45rem 0.9rem; border-radius: 8px; }
.nav-menu a:hover { background: var(--lavender); color: var(--purple-dark); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; padding: 8px; }
.mobile-menu-toggle span { width: 24px; height: 2.5px; background: var(--purple); border-radius: 3px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #2a0f4a 0%, #5b3187 40%, #9b7bc4 80%, #d4c5f9 100%);
    position: relative; overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}
.hero-content { padding-top: 2rem; }
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.orb-1 { width: 500px; height: 500px; background: #b794f4; top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: #6b4c8a; bottom: -80px; right: -80px; }
.orb-3 { width: 300px; height: 300px; background: #d4c5f9; top: 40%; left: 50%; transform: translateX(-50%); }
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-pre { font-size: 1.1rem; color: rgba(255,255,255,0.75); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.hero-name { font-size: 4.5rem; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.3); margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.4rem; color: var(--lavender-mid); font-style: italic; margin-bottom: 2rem; }
.mantra { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); padding: 1.4rem 2.5rem; border-radius: 50px; display: inline-block; margin-bottom: 2.5rem; }
.mantra p { font-family: var(--ff-head); font-size: 1.3rem; color: #fff; font-style: italic; margin: 0; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-button { padding: 0.9rem 2.2rem; border-radius: 50px; font-size: 1rem; font-weight: 700; transition: var(--transition); }
.cta-primary  { background: #fff; color: var(--purple-dark); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.cta-primary:hover  { background: var(--lavender); transform: translateY(-3px); }
.cta-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.cta-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* Animations */
.fade-in         { animation: fadeUp 0.9s ease both; }
.fade-in-delay   { animation: fadeUp 0.9s ease 0.25s both; }
.fade-in-delay-2 { animation: fadeUp 0.9s ease 0.5s both; }
.fade-in-delay-3 { animation: fadeUp 0.9s ease 0.75s both; }
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 2rem; }
/* 3-card layout — force 3 cols on wide screens */
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1050px) { .services-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .services-grid-3 { grid-template-columns: 1fr; } }
/* Entry card accent */
.entry-card { border-color: #b3d9b8; background: linear-gradient(160deg, #f7fff8 0%, #edfaef 100%); }
.entry-card .card-badge { background: #5aaa6a; }
.entry-card .card-icon { background: #e6f7e9; }
.entry-card .card-icon i { color: #5aaa6a; }
.entry-card .price-current { color: #5aaa6a; }
/* Single button row */
.single-btn { grid-template-columns: 1fr; }
.entry-card .book-deposit { background: #5aaa6a; }
.entry-card .book-deposit:hover { background: #3d8a4d; }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--lavender);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--purple-light); }
.service-card.premium { border-color: var(--purple); background: linear-gradient(160deg, #fdfaff 0%, #f3eeff 100%); }

.card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; padding: 0.4rem 1.4rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; white-space: nowrap; }

.card-icon { width: 72px; height: 72px; background: var(--lavender); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.card-icon i { font-size: 2rem; color: var(--purple); }

.service-card h3 { text-align: center; font-size: 1.7rem; margin-bottom: 1.5rem; color: var(--purple-dark); }

/* Price block */
.price-block { background: var(--light); border-radius: 12px; padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.3rem 0; }
.price-label { font-size: 0.9rem; color: var(--gray); }
.price-original { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; }
.highlight-row .price-label { color: var(--purple-dark); font-weight: 600; }
.price-current { font-family: var(--ff-head); font-size: 2.2rem; color: var(--purple); font-weight: 700; }

.vip-scarcity { display: flex; align-items: center; gap: 0.6rem; background: linear-gradient(90deg, #ff6b35, #e84393); color: #fff; padding: 0.6rem 1rem; border-radius: 10px; margin-bottom: 1.2rem; font-size: 0.88rem; font-weight: 600; animation: scarcityPulse 2.5s ease-in-out infinite; }
.vip-scarcity i { font-size: 1rem; flex-shrink: 0; }
@keyframes scarcityPulse { 0%,100%{box-shadow:0 0 0 rgba(232,67,147,0.4);} 50%{box-shadow:0 0 18px rgba(232,67,147,0.5);} }

.booking-deposit { display: flex; align-items: center; gap: 0.7rem; background: var(--purple); color: #fff; padding: 0.7rem 1rem; border-radius: 10px; margin-top: 0.8rem; font-size: 0.95rem; }
.booking-deposit i { font-size: 1.1rem; flex-shrink: 0; }
.deposit-note { font-size: 0.82rem; color: var(--gray); margin-top: 0.6rem; margin-bottom: 0; line-height: 1.5; }

.card-features { margin-bottom: 2rem; }
.card-features li { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; border-bottom: 1px solid var(--lavender); color: var(--dark); }
.card-features li:last-child { border-bottom: none; }
.card-features i { color: #7bbb8d; font-size: 0.9rem; flex-shrink: 0; }

/* Dual booking buttons */
.dual-book-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.5rem; }
.book-btn { width: 100%; padding: 0.9rem 0.6rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.4rem; letter-spacing: 0.2px; }
.book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(107,76,138,0.35); }
.book-deposit { background: var(--purple); color: #fff; }
.book-deposit:hover { background: var(--purple-dark); }
.book-full { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.book-full:hover { background: var(--purple); color: #fff; }
.service-card.premium .book-full { border-color: var(--gold); color: var(--gold); }
.service-card.premium .book-full:hover { background: var(--gold); color: var(--dark); }

/* ===== EBOOK PRE-ORDER ===== */
.ebook-section { background: var(--off-white); overflow: hidden; }
.ebook-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }

/* Book Cover 3D */
.ebook-cover-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.ebook-glow { position: absolute; width: 260px; height: 340px; background: radial-gradient(ellipse, rgba(155,123,196,0.45) 0%, transparent 70%); border-radius: 50%; filter: blur(30px); z-index: 0; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{opacity:0.5;transform:scale(1);} 50%{opacity:0.9;transform:scale(1.1);} }
.ebook-cover { position: relative; z-index: 1; transform-style: preserve-3d; transform: perspective(800px) rotateY(-18deg); transition: transform 0.5s ease; animation: floatBook 4s ease-in-out infinite; }
.ebook-cover:hover { transform: perspective(800px) rotateY(-5deg); }
@keyframes floatBook { 0%,100%{transform:perspective(800px) rotateY(-18deg) translateY(0);} 50%{transform:perspective(800px) rotateY(-18deg) translateY(-12px);} }
.ebook-cover-inner { display: flex; box-shadow: -8px 8px 30px rgba(61,34,96,0.5), 8px 0 20px rgba(0,0,0,0.2); border-radius: 4px 8px 8px 4px; overflow: hidden; }
.ebook-spine { width: 28px; background: linear-gradient(180deg, #3d2260, #6b4c8a, #9b7bc4); flex-shrink: 0; }
.ebook-front { width: 200px; min-height: 280px; background: linear-gradient(145deg, #2a0f4a 0%, #5b3187 50%, #9b7bc4 100%); padding: 1.5rem 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ebook-cover-tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); background: rgba(212,175,55,0.15); padding: 0.2rem 0.6rem; border-radius: 10px; border: 1px solid rgba(212,175,55,0.4); margin-bottom: 0.8rem; }
.ebook-symbol { font-size: 2.2rem; margin-bottom: 0.8rem; }
.ebook-cover-title { font-family: var(--ff-head); font-size: 1.5rem; color: #fff; line-height: 1.2; margin-bottom: 0.8rem; font-weight: 700; }
.ebook-cover-author { font-size: 0.8rem; color: var(--lavender-mid); font-style: italic; margin-bottom: 0.8rem; }
.ebook-cover-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 0.8rem; }
.ebook-cover-sub { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* Ebook Text */
.ebook-badge { display: inline-block; background: linear-gradient(90deg, var(--gold), #f0c040); color: #2d2438; padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
.ebook-text h2 { font-size: 2.8rem; margin-bottom: 0.8rem; color: var(--purple-dark); }
.ebook-text h2 em { color: var(--purple); }
.ebook-tagline { font-size: 1.1rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.ebook-bullets { margin-bottom: 2rem; }
.ebook-bullets li { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 0; color: var(--dark); font-size: 1rem; }
.ebook-bullets i { color: var(--purple); font-size: 0.9rem; flex-shrink: 0; width: 18px; text-align: center; }

.ebook-cta-box { background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark)); border-radius: var(--radius); padding: 2rem; }
.ebook-cta-label { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.ebook-form { display: flex; flex-direction: column; gap: 0.8rem; }
.ebook-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ebook-form input { width: 100%; padding: 0.85rem 1rem; border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; background: rgba(255,255,255,0.12); color: #fff; font-family: var(--ff-body); font-size: 0.9rem; }
.ebook-form input::placeholder { color: rgba(255,255,255,0.5); }
.ebook-form input:focus { outline: none; border-color: var(--gold); }
.ebook-waitlist-btn { width: 100%; background: var(--gold); color: #2d2438; padding: 1rem; border-radius: 50px; font-size: 1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ebook-waitlist-btn:hover { background: #e8c840; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
.ebook-privacy { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 0.6rem; margin-bottom: 0; }

/* ===== FREEBIE ===== */
.freebie { background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 60%, var(--purple) 100%); color: #fff; }
.freebie-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.freebie-badge { display: inline-block; background: var(--gold); color: #2d2438; padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; }
.freebie-text h2 { font-size: 2.8rem; color: #fff; margin-bottom: 1.2rem; line-height: 1.2; }
.freebie-text h2 em { color: var(--lavender-mid); }
.freebie-text p { color: rgba(255,255,255,0.85); }
.freebie-bullets { margin: 1.5rem 0; }
.freebie-bullets li { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 0; color: rgba(255,255,255,0.9); }
.freebie-bullets i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.freebie-join-note { font-size: 1rem; color: var(--lavender-mid); margin-top: 1rem; }

.freebie-form-box { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 2.5rem; }
.freebie-form-box h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-sub { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group input,
.form-group textarea,
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    font-family: var(--ff-body); font-size: 0.95rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--lavender-mid); background: rgba(255,255,255,0.2); }

.freebie-submit-btn { width: 100%; background: var(--gold); color: #2d2438; padding: 1rem; border-radius: 50px; font-size: 1.05rem; font-weight: 700; margin-top: 0.5rem; }
.freebie-submit-btn:hover { background: #e8c84a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }
.privacy-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-align: center; margin-top: 0.8rem; margin-bottom: 0; }

.community-join { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); }
.community-join p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.8rem; }
.comm-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.75rem 1rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.7rem; transition: var(--transition); }
.whatsapp-btn { background: var(--whatsapp); color: #fff; }
.whatsapp-btn:hover { background: #1dab55; transform: translateY(-2px); }
.telegram-btn { background: var(--telegram); color: #fff; }
.telegram-btn:hover { background: #006aaa; transform: translateY(-2px); }

/* ===== ABOUT ===== */
.about { background: var(--light); }
.about-content { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 20px; box-shadow: 0 15px 50px rgba(107,76,138,0.25); }
.about-badge { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; padding: 0.7rem 1.5rem; border-radius: 30px; font-size: 0.85rem; font-weight: 700; white-space: nowrap; box-shadow: 0 5px 20px rgba(107,76,138,0.3); }
.about-pre { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--purple); margin-bottom: 0.5rem; }
.about-text h2 { font-size: 2.8rem; margin-bottom: 1.2rem; }
.about-text p { color: var(--dark); font-size: 1.05rem; }

.healing-phrases { margin-top: 2.5rem; background: var(--white); border-radius: var(--radius); padding: 2rem; border: 2px solid var(--lavender); }
.healing-phrases h3 { text-align: center; margin-bottom: 1.5rem; color: var(--purple); font-size: 1.4rem; }
.phrases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.phrase { text-align: center; padding: 1.2rem 0.5rem; background: var(--light); border-radius: 12px; transition: var(--transition); }
.phrase:hover { background: var(--lavender); transform: translateY(-4px); }
.phrase i { font-size: 2rem; color: var(--purple); display: block; margin-bottom: 0.7rem; }
.phrase p { font-weight: 600; color: var(--purple-dark); margin: 0; font-size: 0.9rem; }

/* ===== COMMUNITY ===== */
.community { background: var(--off-white); }
.community-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.comm-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 2px solid var(--lavender); }
.comm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.comm-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.comm-icon i { font-size: 2.5rem; color: #fff; }
.whatsapp-icon { background: var(--whatsapp); }
.telegram-icon { background: var(--telegram); }
.comm-card h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.comm-card p { color: var(--gray); margin-bottom: 1.5rem; }
.comm-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; }
.whatsapp-link { background: var(--whatsapp); color: #fff; }
.whatsapp-link:hover { background: #1dab55; transform: translateY(-2px); }
.telegram-link { background: var(--telegram); color: #fff; }
.telegram-link:hover { background: #006aaa; transform: translateY(-2px); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
/* 6 testimonials — 3 col on desktop, 2 on tablet, 1 on mobile */
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); }
.stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; color: var(--dark); }
.t-author { border-top: 2px solid var(--lavender); margin-top: 1rem; padding-top: 1rem; display: flex; flex-direction: column; gap: 0.2rem; }
.t-author strong { color: var(--purple-dark); }
.t-author span { color: var(--gray); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 2rem; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--purple); }
.info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: var(--light); border-radius: 12px; margin-bottom: 1rem; }
.info-item i { font-size: 1.6rem; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; color: var(--purple-dark); margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--dark); margin: 0; }
.info-item a:hover { color: var(--purple); }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-links a { width: 44px; height: 44px; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.social-links a:hover { background: var(--purple-dark); transform: translateY(-3px); }

.contact-form { background: var(--light); padding: 2.5rem; border-radius: var(--radius); }
.contact-form input,
.contact-form textarea { background: var(--white); color: var(--dark); border: 2px solid var(--lavender); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--purple); }
.submit-btn { width: 100%; background: var(--purple); color: #fff; padding: 1rem; border-radius: 50px; font-size: 1.05rem; font-weight: 700; margin-top: 0.5rem; }
.submit-btn:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(107,76,138,0.3); }

/* ===== FOOTER ===== */
.footer { background: var(--purple-deep); color: #fff; padding: 3.5rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-size: 1.8rem; color: var(--lavender-mid); margin-bottom: 0.8rem; }
.footer-brand p { color: var(--purple-light); font-size: 0.95rem; }
.footer-mantra { font-family: var(--ff-head); font-style: italic; color: var(--lavender-mid); margin-top: 1rem; font-size: 1rem; }
.footer-links h4, .footer-services h4 { color: var(--lavender-mid); margin-bottom: 1rem; }
.footer-links li, .footer-services li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--purple-light); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-services li { color: var(--purple-light); font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(197,179,217,0.2); padding-top: 1.5rem; text-align: center; color: var(--purple-light); font-size: 0.9rem; }

/* ===== DUAL BOOKING BUTTONS ===== */
.dual-book-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.5rem; }
.book-deposit { background: var(--purple); color: #fff; padding: 0.85rem 0.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.book-deposit:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107,76,138,0.35); }
.book-full { background: linear-gradient(135deg, var(--gold), #e8c840); color: #2d2438; padding: 0.85rem 0.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.book-full:hover { background: linear-gradient(135deg, #e8c840, var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }
@media (max-width: 400px) { .dual-book-btns { grid-template-columns: 1fr; } }

/* ===== HO'OPONOPONO SCRIPTS SECTION ===== */
.scripts-section { background: linear-gradient(145deg, #1a0a33 0%, #3d2260 50%, #6b4c8a 100%); padding: 80px 0; overflow: hidden; }
.scripts-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }

/* Scripts Book Cover */
.scripts-cover-wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.scripts-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 260px; height: 340px; background: radial-gradient(ellipse, rgba(212,175,55,0.35) 0%, transparent 70%); border-radius: 50%; filter: blur(30px); z-index: 0; animation: glowPulse 3s ease-in-out infinite; }
.scripts-cover { position: relative; z-index: 1; transform-style: preserve-3d; animation: floatBook 4s ease-in-out infinite; }
.scripts-cover-inner { display: flex; box-shadow: -8px 8px 30px rgba(0,0,0,0.6), 8px 0 20px rgba(0,0,0,0.3); border-radius: 4px 8px 8px 4px; overflow: hidden; }
.scripts-spine { width: 28px; background: linear-gradient(180deg, #7a5c00, #d4af37, #f0c040); flex-shrink: 0; }
.scripts-front { width: 200px; min-height: 290px; background: linear-gradient(145deg, #1a0a33 0%, #3d2260 60%, #7c5c00 100%); padding: 1.5rem 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.scripts-cover-tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); background: rgba(212,175,55,0.15); padding: 0.2rem 0.6rem; border-radius: 10px; border: 1px solid rgba(212,175,55,0.4); margin-bottom: 0.8rem; }
.scripts-symbol { font-size: 2rem; margin-bottom: 0.8rem; }
.scripts-cover-title { font-family: var(--ff-head); font-size: 1.3rem; color: #fff; line-height: 1.2; margin-bottom: 0.8rem; font-weight: 700; }
.scripts-cover-author { font-size: 0.8rem; color: var(--lavender-mid); font-style: italic; margin-bottom: 0.6rem; }
.scripts-cover-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 0.6rem; }
.scripts-cover-sub { font-size: 0.62rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* Ailment tags */
.ailment-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; position: relative; z-index: 1; }
.ailment-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(212,175,55,0.35); color: rgba(255,255,255,0.85); padding: 0.3rem 0.7rem; border-radius: 20px; font-size: 0.78rem; }

/* Scripts Text Side */
.scripts-badge { display: inline-block; background: linear-gradient(90deg, var(--gold), #f0c040); color: #2d2438; padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
.scripts-text h2 { font-size: 2.6rem; color: #fff; margin-bottom: 0.8rem; line-height: 1.2; }
.scripts-text h2 em { color: var(--gold); font-style: italic; }
.scripts-tagline { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.7; }
.scripts-bullets { margin-bottom: 2rem; }
.scripts-bullets li { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 0; color: rgba(255,255,255,0.9); font-size: 0.98rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.scripts-bullets li:last-child { border-bottom: none; }
.scripts-bullets i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; width: 18px; text-align: center; }

/* Scripts Buy Box */
.scripts-buy-box { background: rgba(255,255,255,0.08); border: 2px solid rgba(212,175,55,0.4); border-radius: var(--radius); padding: 1.8rem; }
.scripts-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.8rem; }
.scripts-price-left { display: flex; align-items: baseline; gap: 0.8rem; }
.scripts-was { font-size: 1.3rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.scripts-now { font-family: var(--ff-head); font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; }
.scripts-save { font-size: 0.82rem; background: #e84393; color: #fff; padding: 0.2rem 0.7rem; border-radius: 20px; font-weight: 700; }
.scripts-tag-pill { background: rgba(212,175,55,0.2); border: 1px solid var(--gold); color: var(--gold); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.scripts-buy-btn { width: 100%; background: linear-gradient(135deg, var(--gold), #f0c040); color: #2d2438; padding: 1.1rem; border-radius: 50px; font-size: 1.05rem; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 0.6rem; letter-spacing: 0.3px; transition: var(--transition); }
.scripts-buy-btn:hover { background: linear-gradient(135deg, #f0c040, var(--gold)); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.5); }
.scripts-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 0.8rem; margin-bottom: 0; }
@media (max-width: 968px) { .scripts-inner { grid-template-columns: 1fr; } .scripts-cover { margin: 0 auto; } }

/* ===== FOLLOW SECTION ===== */
.follow-section { background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 60%, var(--purple) 100%); padding: 80px 0; }
.follow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.follow-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 2rem 1.2rem; color: #fff; text-decoration: none; transition: var(--transition); gap: 0.4rem; }
.follow-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.follow-card i { font-size: 2.5rem; margin-bottom: 0.5rem; }
.follow-platform { font-weight: 700; font-size: 1rem; }
.follow-handle { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.follow-cta { margin-top: 0.5rem; font-size: 0.85rem; font-weight: 700; background: rgba(255,255,255,0.2); padding: 0.3rem 1rem; border-radius: 20px; }
.instagram i { color: #E1306C; }
.facebook i { color: #4267B2; }
.youtube i { color: #FF0000; }
.linkedin i { color: #0077B5; }
.instagram { border-color: rgba(225,48,108,0.4); }
.facebook { border-color: rgba(66,103,178,0.4); }
.youtube { border-color: rgba(255,0,0,0.4); }
.linkedin { border-color: rgba(0,119,181,0.4); }
@media (max-width: 768px) { .follow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .follow-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* ===== PRIVATE GROUP NOTE (in modal) ===== */
.private-group-note { display: flex; align-items: flex-start; gap: 0.8rem; background: linear-gradient(135deg, #f3eeff, #e8dff5); border: 2px solid var(--purple-light); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.private-group-note i { color: var(--purple); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.private-group-note p { margin: 0; font-size: 0.9rem; color: var(--purple-dark); line-height: 1.5; }

/* ===== MODAL ===== */
.modal { display: none; position: fixed; inset: 0; background: rgba(30,15,50,0.85); backdrop-filter: blur(6px); z-index: 2000; overflow-y: auto; }
.modal-content { background: var(--white); max-width: 480px; margin: 6% auto; border-radius: 20px; padding: 3rem; position: relative; box-shadow: 0 20px 60px rgba(107,76,138,0.4); }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; font-size: 1.8rem; color: var(--gray); line-height: 1; }
.modal-close:hover { color: var(--purple); }
.modal-content h2 { text-align: center; margin-bottom: 1.5rem; }
#modalCourseInfo { background: var(--light); border-radius: 12px; padding: 1.2rem; text-align: center; margin-bottom: 1.5rem; }
.modal-content .form-group input { background: var(--light); color: var(--dark); border: 2px solid var(--lavender); }
.modal-content .form-group input::placeholder { color: var(--gray); }
.modal-content .form-group input:focus { border-color: var(--purple); }
.pay-btn { width: 100%; background: var(--purple); color: #fff; padding: 1rem; border-radius: 50px; font-size: 1.05rem; font-weight: 700; margin-top: 0.5rem; }
.pay-btn:hover { background: var(--purple-dark); }
.payment-note { text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: 1rem; margin-bottom: 0; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--purple-dark); color: #fff; padding: 1rem 2rem; border-radius: 50px; font-size: 0.95rem; z-index: 3000; opacity: 0; pointer-events: none; transition: all 0.4s ease; white-space: nowrap; box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu { position: fixed; top: 65px; left: -100%; width: 100%; flex-direction: column; background: #fff; padding: 2rem; box-shadow: 0 10px 30px rgba(107,76,138,0.15); transition: 0.3s; gap: 0.5rem; }
    .nav-menu.active { left: 0; }
    .mobile-menu-toggle { display: flex; }
    .freebie-inner { grid-template-columns: 1fr; }
    .ebook-inner { grid-template-columns: 1fr; }
    .ebook-form-row { grid-template-columns: 1fr; }
    .ebook-cover { margin: 0 auto; }
    .about-content { grid-template-columns: 1fr; }
    .about-badge { white-space: normal; text-align: center; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .community-cards { grid-template-columns: 1fr; }
    .phrases-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-name { font-size: 3rem; }
}

@media (max-width: 600px) {
    section { padding: 60px 0; }
    .hero-name { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .freebie-text h2 { font-size: 2rem; }
    .about-text h2 { font-size: 2rem; }
    .modal-content { margin: 8% 16px; padding: 2rem; }
    .mantra { padding: 1rem 1.4rem; }
    .mantra p { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .phrases-grid { grid-template-columns: 1fr 1fr; }
}
