/* ============================================
   JIVA — The Individual Self
   Style Guide: Quiet Luxury
   ============================================ */

:root {
    --navy: #1F3B5F;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --body-text: #4A5568;
    --accent: #EEF2F7;
    --border: #E2E8F0;
    --gold: #D4AF37;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--navy) var(--light-grey);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--light-grey); }
html::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--body-text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(31, 59, 95, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { max-height: 45px; width: auto; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover { opacity: 0.6; }

.lang-toggle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    border: 1.5px solid var(--navy);
    padding: 6px 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lang-toggle:hover { background: var(--navy); color: var(--white); }
.lang-toggle .lang-el, .lang-toggle .lang-en { transition: opacity 0.3s ease; }
body[data-lang="el"] .lang-toggle .lang-el,
body[data-lang="en"] .lang-toggle .lang-en { font-weight: 700; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 59, 95, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 72px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-header p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--body-text);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--navy), #2a4d7a, #4a6d8c, #8aaabe);
    position: relative;
    overflow: hidden;
}

.about-photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(31,59,95,0.15));
    border-radius: 12px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 8px;
}

.about-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 32px;
    line-height: 1.6;
    font-style: italic;
}

.about-body p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-body p:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--navy);
    font-style: italic;
    margin-top: 32px;
    margin-bottom: 0;
}

/* ============================================
   SERVICES — Full-Width Alternating Rows
   ============================================ */
.services {
    padding: 100px 0 40px;
    background: var(--white);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
    max-width: 1100px;
    margin: 0 auto;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row__image {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
    border-radius: 4px;
}

.service-row__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.6s ease;
}

.service-row:hover .service-row__image img {
    transform: scale(1.03);
}

.service-row__content {
    flex: 0 0 55%;
    max-width: 55%;
}

.service-row__content h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-row__content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }
    .service-row__image,
    .service-row__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .service-row__image img {
        height: 280px;
    }
    .service-row__content h2 {
        font-size: 28px;
    }
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
    padding: 100px 0;
    background: var(--light-grey);
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--navy);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--navy); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--body-text); opacity: 0.6; }

.contact-form button[type="submit"] {
    width: 100%;
    height: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form button[type="submit"]:hover {
    background: #2a4d7a;
    transform: translateY(-1px);
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--body-text);
    opacity: 0.7;
}

.form-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover { opacity: 1; }

.footer-social {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.social-icon {
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover { opacity: 1; }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    opacity: 0.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .animate-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        will-change: transform, opacity;
    }
    .animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-fade {
        opacity: 0;
        transition: opacity 0.8s ease;
        will-change: opacity;
    }
    .animate-fade.visible {
        opacity: 1;
    }

    .animate-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        will-change: transform, opacity;
    }
    .animate-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .animate-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        will-change: transform, opacity;
    }
    .animate-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-up, .animate-fade, .animate-left, .animate-right {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ============================================
   3B — DESTINY MATRIX ANIMATION
   ============================================ */
.destiny-matrix-animation {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.destiny-matrix-animation.hero-size {
    width: 420px;
    height: 420px;
}

.dm-date-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 28px;
    color: var(--navy);
    opacity: 0;
    white-space: nowrap;
    letter-spacing: 4px;
    z-index: 5;
}

.destiny-matrix-animation.hero-size .dm-date-text {
    font-size: 36px;
}

.dm-svg {
    width: 100%;
    height: 100%;
}

.dm-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.dm-outer-circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.dm-circle {
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center;
    transform-box: fill-box;
}

.dm-number {
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes dmPulse {
        0%, 100% { filter: drop-shadow(0 0 6px rgba(31,59,95,0.2)); }
        50% { filter: drop-shadow(0 0 14px rgba(31,59,95,0.4)); }
    }

    .dm-complete .dm-svg {
        animation: dmPulse 3s ease-in-out infinite;
    }
}

/* ============================================
   3C — PENDULUM ANIMATION
   ============================================ */
.pendulum-animation {
    position: relative;
    width: 120px;
    height: 140px;
}

.pendulum-animation.hero-size {
    width: 160px;
    height: 180px;
}

.pendulum-group {
    transform-origin: top center;
    opacity: 0;
    will-change: transform;
}

.pendulum-animation.pendulum-active .pendulum-group {
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes pendulumSwing {
        0% { transform: rotate(-25deg); }
        50% { transform: rotate(25deg); }
        100% { transform: rotate(-25deg); }
    }

    .pendulum-animation.pendulum-active .pendulum-group {
        animation: pendulumSwing 2s ease-in-out infinite;
    }
}

/* ============================================
   3D — SPIRAL RINGS (Hypnotherapy)
   ============================================ */
.spiral-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.spiral-animation.hero-size {
    width: 180px;
    height: 180px;
}

.spiral-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes spiralExpand {
        0% {
            opacity: 0.8;
            transform: translate(-50%, -50%) scale(0);
        }
        50% {
            opacity: 0.5;
        }
        100% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .spiral-animation.spiral-active .spiral-ring {
        animation: spiralExpand 3s ease-out infinite;
    }

    .spiral-animation.spiral-active .spiral-ring:nth-child(1) { animation-delay: 0s; }
    .spiral-animation.spiral-active .spiral-ring:nth-child(2) { animation-delay: 0.4s; }
    .spiral-animation.spiral-active .spiral-ring:nth-child(3) { animation-delay: 0.8s; }
    .spiral-animation.spiral-active .spiral-ring:nth-child(4) { animation-delay: 1.2s; }
    .spiral-animation.spiral-active .spiral-ring:nth-child(5) { animation-delay: 1.6s; }
    .spiral-animation.spiral-active .spiral-ring:nth-child(6) { animation-delay: 2.0s; }
}


/* ============================================
   SERVICE PAGE STYLES (shared for individual pages)
   ============================================ */
.service-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.service-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 59, 95, 0.55);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.service-hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 60px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-hero-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
}

.service-hero-animation {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    right: 40px;
    pointer-events: none;
}

.service-content {
    padding: 80px 0;
    background: var(--white);
}

.service-content .container {
    max-width: 800px;
}

.service-intro {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
}

.service-section {
    margin-bottom: 50px;
}

.service-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-section p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 50px 0;
}

.service-list li {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.8;
    padding: 8px 0 8px 24px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.6;
}

.service-page-anim-container {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.service-cta {
    padding: 80px 0;
    background: var(--light-grey);
    text-align: center;
}

.service-cta .btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 18px 48px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta .btn-primary:hover {
    background: #2a4d7a;
    transform: translateY(-2px);
}

.service-back {
    padding: 40px 0;
    background: var(--white);
}

.service-back a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.service-back a:hover { opacity: 0.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }

    .hero-content h1 { font-size: 56px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destiny-matrix-animation { width: 280px; height: 280px; }
    .destiny-matrix-animation.hero-size { width: 360px; height: 360px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        max-height: 400px;
        padding: 20px 0;
        gap: 20px;
    }

    .hamburger { display: flex; }
    .lang-toggle { margin-right: 12px; }

    .hero-content h1 { font-size: 42px; }
    .hero-subtitle { font-size: 17px; }

    /* About */
    .about { padding: 80px 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-photo-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }
    .about-text h2 { font-size: 36px; }

    /* Services */
    .services { padding: 60px 0 20px; }

    .service-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 0;
    }

    .service-row.reverse .service-row__image,
    .service-row.reverse .service-row__content {
        order: unset;
    }

    .service-row__content h2 { font-size: 28px; }

    .booking { padding: 60px 0; }
    .contact { padding: 60px 0; }
    .section-header h2 { font-size: 34px; }

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

    /* Service pages */
    .service-hero { height: 50vh; min-height: 300px; }
    .service-hero-content h1 { font-size: 36px; }
    .service-hero-content p { font-size: 17px; }
    .service-content { padding: 50px 0; }
    .service-intro { font-size: 17px; }
    .service-section h2 { font-size: 26px; }
    .service-cta { padding: 50px 0; }

    .service-hero-animation { display: none; }

    /* Animations smaller on mobile */
    .destiny-matrix-animation { width: 240px; height: 240px; }
    .destiny-matrix-animation.hero-size { width: 280px; height: 280px; }
    .pendulum-animation { width: 80px; height: 100px; }
    .spiral-animation { width: 80px; height: 80px; }
}

/* ============================================
   3A — FEATHER SVG ANIMATION (Angelic Reiki)
   ============================================ */
@keyframes featherDrift {
  0%   { transform: translateY(-20px) rotate(-20deg); opacity: 0; }
  15%  { opacity: 1; }
  60%  { transform: translateY(10px) rotate(8deg); opacity: 1; }
  80%  { transform: translateY(14px) rotate(4deg); }
  100% { transform: translateY(12px) rotate(6deg); opacity: 0.85; }
}
.feather-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.feather-svg {
  animation: featherDrift 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-play-state: paused;
  filter: drop-shadow(0 6px 15px rgba(31,59,95,0.12));
}
.feather-svg.animate {
  animation-play-state: running;
}

/* ============================================
   3E-NEW — LOTUS ANIMATION (Personal Sessions)
   ============================================ */
.lotus-container {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.lotus-svg {
  overflow: visible;
}

/* Outer petals */
.lotus-petal {
  transform-origin: 100px 100px;
  opacity: 0;
  transform: scale(0);
}
.lotus-petal.open {
  animation: petalBloom 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--delay);
}

/* Inner petals */
.lotus-petal-inner {
  transform-origin: 100px 100px;
  opacity: 0;
  transform: scale(0);
}
.lotus-petal-inner.open {
  animation: petalBloom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--delay);
}

/* Center circle */
.lotus-center {
  opacity: 0;
}
.lotus-center.open {
  animation: centerGlow 0.8s ease forwards;
  animation-delay: 2.6s;
}

@keyframes petalBloom {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes centerGlow {
  0%   { opacity: 0; transform: scale(0); }
  70%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
