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

:root {
    --ink: #1a1a2e;
    --mist: #261d1a;
    --lavender: #D9BBB4;
    --violet: #A6727C;
    --blush: #594F40;
    --white: #ffffff;
    --soft: #732D3A;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-dark: #2D1B36;
    --text-body: #4A3654;
    --text-muted: #8B7A94;
    --success: #5DAE78;
    --success-bg: #E8F5ED;
    --danger: #D45D6E;
    --danger-bg: #FDECEF;
    --warning: #E5A63B;
    --warning-bg: #FFF8E8;
    --info: #5B9BD5;
    --info-bg: #EBF3FB;
    --shadow-sm: 0 2px 8px rgba(61, 31, 71, 0.08);
    --shadow-md: 0 4px 20px rgba(61, 31, 71, 0.12);
    --shadow-lg: 0 8px 40px rgba(61, 31, 71, 0.16);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--mist);
    color: var(--ink);
}

/* ── NAVBAR ── */

/* ── NAVBAR ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    height: 65px;
    background: rgba(240, 239, 246, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 92, 191, 0.12);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(124, 92, 191, 0.1);
}

.logo-the {
    font-family: 'NewIconScript', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft);
    letter-spacing: -0.02em;
    margin-right: 4px;
    white-space: nowrap;
}

.logo-bloom {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    color: var(--soft);
    margin-left: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--soft);
    cursor: pointer;
    order: 3;
    padding: 0.5rem;
}

@font-face {
    font-family: 'NewIconScript';
    src: url('/static/fonts/New-Icon-Script-Exfont1157.otf');
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url('/static/fonts/CormorantGaramond-Italic.ttf');
}

/* ── Bunga ── */


/* ── SECTIONS ── */

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 80px;
}

section:nth-child(odd) {
    background: var(--mist);
}

section:nth-child(even) {
    background: var(--white);
}

/* ── HERO ── */

#home {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
}

.bunga-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 14px 14px;
    background: white;
    color: var(--soft);
    border-radius: 55px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.button-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 184, 232, 0.4);
}

.hero-eyebrow .eyebrow-main {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-top: 0px;
    margin-bottom: 8px;
}

.hero-eyebrow span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-title {
    font-family: 'NewIconScript', serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    text-align: center;
    font-weight: 400;
    line-height: 0.65;
    letter-spacing: -0.02em;
    color: var(--soft);
    margin-top: -20px;
    margin-bottom: 45px;
}

.hero-title .word-blooming {
    display: block;
    font-family: 'CormorantGaramond', serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: var(--white);
    line-height: 0.72;
}

.hero-title .word-journey {
    display: block;
    font-family: 'CormorantGaramond', serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 500;
    color: var(--white);
    line-height: 0.72;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    text-align: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.glow-text {
    color: #fff;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 50px rgba(255, 255, 255, 0.1);
}

/* ── SECTION HEADERS ── */

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(100, 24, 62);
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'CormorantGaramond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 550;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgb(100, 24, 62);
    margin-bottom: 15px;
}

.section-titletwo {
    font-family: 'CormorantGaramond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--soft);
    margin-bottom: 15px;
}

.section-desc {
    font-style: italic;
    font-size: 1rem;
    color: var(--soft);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 48px;
}

/* ── ABOUT / TIMELINE ── */

.about-header {
    max-width: 560px;
    margin-bottom: 56px;
}

.about-header .section-desc {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    max-width: 780px;
}

/* vertical line */

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--violet), var(--lavender), transparent);
}

.tl-step {
    display: flex;
    font-family: 'DM Sans', sans-serif;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-step.visible {
    opacity: 1;
    transform: translateX(0);
}

/* connector between steps */

.tl-step:not(:last-child) {
    padding-bottom: 0;
}

.tl-dot-wrap {
    flex-shrink: 0;
    width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tl-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 92, 191, 0.25);
    position: relative;
    z-index: 1;
}

.tl-line {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: linear-gradient(to bottom, var(--lavender), rgba(200, 184, 232, 0.2));
}

.tl-step:last-child .tl-line {
    display: none;
}

.tl-content {
    padding: 6px 0 40px;
    flex: 1;
}

.tl-step:last-child .tl-content {
    padding-bottom: 0;
}

.tl-badge {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    font-weight: 600;
    background: var(--blush);
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.tl-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--soft);
    margin-bottom: 8px;
    line-height: 1.2;
    max-width: 480px;
}

.tl-desc {
    font-size: 1rem;
    color: var(--soft);
    line-height: 1.7;
    max-width: 480px;
}

.tl-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tl-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--white);
    border: 1px solid rgba(124, 92, 191, 0.2);
    color: var(--soft);
}

/* ── PORTFOLIO ── */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    color: var(--violet);
}

.card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--soft);
    background: var(--white);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(124, 92, 191, 0.12);
}

.card-thumb img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.card-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card:nth-child(1) .card-thumb {
    background: linear-gradient(135deg, #e8d5f0, #c8b8e8);
}

.card:nth-child(2) .card-thumb {
    background: linear-gradient(135deg, #d5e8f0, #b8d4e8);
}

.card:nth-child(3) .card-thumb {
    background: linear-gradient(135deg, #f0e8d5, #e8d4b8);
}

.card-body {
    padding: 20px 22px 24px;
    color: var(--violet);
}

.card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    font-weight: 500;
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.85rem;
    color: var(--soft);
    line-height: 1.6;
}

/* ── SKILLS ── */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
}

.skill-bar {
    height: 6px;
    background: var(--blush);
    border-radius: 99px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--lavender));
    border-radius: 99px;
    transform-origin: left;
    animation: fillBar 1.2s ease forwards;
}

@keyframes fillBar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ── CONTACT ── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgb(22, 22, 22);
    transition: border-color 0.2s;
    max-width: 400px;
    width: 100%;
}

.contact-item:hover {
    border-color: rgb(32, 31, 31);
}

.contact-icon {
    font-size: 1.4rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

.contact-detail span {
    font-size: 0.8rem;
    color: rgb(56, 51, 51);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid white;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--violet);
}

.contact-form button {
    padding: 14px;
    background: var(--soft);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
    background: #6347a8;
    transform: translateY(-1px);
}

/* ── FOOTER ── */

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 28px;
    font-size: 0.8rem;
}

footer span {
    color: var(--lavender);
}

/* ── SCROLL INDICATOR ── */

@media (max-width: 768px) {
    nav {
        display: flex;
        align-items: center;
        padding: 0 24px;
        position: relative;
    }

    #navbar {
        position: relative;
    }

    .nav-toggle {
        display: block !important;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--soft);
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
        z-index: 10001;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(240, 239, 246, 0.97);
        backdrop-filter: blur(20px);
        padding: 1rem 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(124, 92, 191, 0.12);
        z-index: 10000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links.active {
        display: flex !important;
    }

    section {
        padding: 100px 28px 60px;
    }

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

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

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

/* ── PENDAFTARAN ── */

#daftar {
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    color: #732D3A;
}

.form-subtitle {
    margin: 0 0 2rem;
    color: #888;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    padding: 0.8rem 1rem;
    border: 1.5px solid #e0d5d3;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #A6727C;
}

.form-group input[type="file"] {
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.file-hint {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #732D3A 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-info-tiket {
    background: var(--violet);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.btn-info-tiket:hover {
    opacity: 0.85;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-card h3 {
    margin: 0 0 1.2rem;
    color: #732D3A;
    font-size: 1.2rem;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #888;
    cursor: pointer;
}

.modal-close:hover {
    color: #333;
}

.ticket-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f9f5f4;
    border-radius: 8px;
}

.ticket-list li span {
    color: #666;
    font-size: 0.9rem;
}

.ticket-list li strong {
    color: #732D3A;
}

@media (max-width: 768px) {
    #home {
        padding: 0 !important;
        align-items: center;
        justify-content: center;
    }

    .hero-sub {
        margin-top: 0px;
    }

    .hero-eyebrow .eyebrow-main {
        margin-top: 0px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(5.5rem, 22vw, 8rem);
        margin-bottom: 45px;
    }

    .hero-title .word-blooming,
    .hero-title .word-journey {
        font-size: clamp(5.5rem, 22vw, 8rem);
    }
}

/* ── BACKGROUND ── */

#join,
#mms,
#faq,
#contact {
    background-color: white;
    padding: 60px 20px;
}

/* ── LOGIN PAGE ── */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #3d1a20 60%, #732D3A 100%);
    padding: 1rem;
}

.login-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.5s ease-out;
    text-align: center;
    border-top: 4px solid #A6727C;
}

.login-card .login-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #A6727C 0%, #732D3A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(115, 45, 58, 0.3);
}

/* ── Admin Dashboard ── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #A6727C;
    --primary-dark: #732D3A;
    --primary-light: #A6727C;
    --accent-pink: #D9BBB4;
    --accent-gold: #D9BBB4;
    --accent-gold-light: #e8d5cf;
    --bg-cream: #ffffff;
    --bg-soft-pink: #f5efed;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-dark: #1a1a2e;
    --text-body: #594F40;
    --text-muted: #8B7A74;
    --success: #5DAE78;
    --success-bg: #E8F5ED;
    --danger: #D45D6E;
    --danger-bg: #FDECEF;
    --warning: #E5A63B;
    --warning-bg: #FFF8E8;
    --info: #A6727C;
    --info-bg: #f5e8ea;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.16);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-cream);
    color: var(--text-body);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ── ANIMATIONS ── */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out forwards;
}

/* ── NAVBAR ── */

.mms-navbar {
    background: linear-gradient(135deg, #732D3A 0%, #A6727C 100%);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mms-navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mms-navbar .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.mms-navbar .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0 !important;
    line-height: 1.3 !important;
}

.mms-navbar .nav-links {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    flex-wrap: wrap;
}

.mms-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.mms-navbar .nav-link:hover,
.mms-navbar .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

.mms-navbar .navbar-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ── STAT CARDS ── */

.mms-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mms-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mms-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.mms-stat-card .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mms-stat-card .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.mms-stat-card::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-total {
    background: linear-gradient(135deg, #A6727C 0%, #732D3A 100%);
}

.stat-hadir {
    background: linear-gradient(135deg, #5DAE78 0%, #3D8B5A 100%);
}

.stat-belum {
    background: linear-gradient(135deg, #E5A63B 0%, #C78A2B 100%);
}

.stat-kuota {
    background: linear-gradient(135deg, #D9BBB4 0%, #A6727C 100%);
}

/* ── BUTTONS ── */

.mms-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.mms-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mms-btn:active {
    transform: translateY(0);
}

.mms-btn-primary {
    background: linear-gradient(135deg, #A6727C 0%, #732D3A 100%);
    color: white;
}

.mms-btn-primary:hover {
    background: linear-gradient(135deg, #732D3A 0%, #4a1d24 100%);
    color: white;
}

.mms-btn-gold {
    background: linear-gradient(135deg, #D9BBB4 0%, #A6727C 100%);
    color: white;
}

.mms-btn-gold:hover {
    color: white;
    background: linear-gradient(135deg, #A6727C 0%, #732D3A 100%);
}

.mms-btn-success {
    background: linear-gradient(135deg, #5DAE78 0%, #3D8B5A 100%);
    color: white;
}

.mms-btn-success:hover {
    color: white;
}

.mms-btn-danger {
    background: linear-gradient(135deg, #D45D6E 0%, #B84455 100%);
    color: white;
}

.mms-btn-danger:hover {
    color: white;
}

.mms-btn-outline {
    background: transparent;
    color: #A6727C;
    border: 2px solid #A6727C;
}

.mms-btn-outline:hover {
    background: #A6727C;
    color: white;
}

.mms-btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.mms-btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* ── BADGES ── */

.mms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.mms-badge-success {
    background: var(--success-bg);
    color: var(--success);
}

.mms-badge-danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.mms-badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.mms-badge-info {
    background: #f5e8ea;
    color: #732D3A;
}

/* ── INPUT ── */

.mms-input {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(166, 114, 124, 0.2);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.mms-input:focus {
    outline: none;
    border-color: #A6727C;
    box-shadow: 0 0 0 4px rgba(166, 114, 124, 0.12);
}

.mms-input::placeholder {
    color: var(--text-muted);
}

/* ── TABLE ── */

.mms-table-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.mms-table {
    width: 100%;
    border-collapse: collapse;
}

.mms-table thead th {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #732D3A 0%, #A6727C 100%);
    color: white;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.mms-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(166, 114, 124, 0.08);
    font-size: 0.88rem;
    vertical-align: middle;
}

.mms-table tbody tr {
    transition: var(--transition);
}

.mms-table tbody tr:hover {
    background: rgba(166, 114, 124, 0.04);
}

.mms-table tbody tr:last-child td {
    border-bottom: none;
}

/* ── CHART CARD ── */

.mms-chart-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(166, 114, 124, 0.08);
    transition: var(--transition);
}

.mms-chart-card:hover {
    box-shadow: var(--shadow-md);
}

.mms-chart-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ── TABS ── */

.mms-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(166, 114, 124, 0.08);
    padding: 0.35rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mms-tab {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}

.mms-tab:hover {
    color: #A6727C;
    background: rgba(255, 255, 255, 0.5);
}

.mms-tab.active {
    background: white;
    color: #732D3A;
    box-shadow: var(--shadow-sm);
}

/* ── MODAL ── */

.mms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-out;
}

.mms-modal-overlay.show {
    display: flex;
}

.mms-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease-out;
    text-align: center;
}

.mms-modal h3 {
    margin-bottom: 0.75rem;
}

.mms-modal p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.mms-modal .modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* ── ALERTS ── */

.mms-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.4s ease-out forwards;
    margin-bottom: 1rem;
}

.mms-alert-success {
    background: var(--success-bg);
    color: #1E6B3A;
    border-left: 4px solid var(--success);
}

.mms-alert-danger {
    background: var(--danger-bg);
    color: #9B3040;
    border-left: 4px solid var(--danger);
}

.mms-alert-warning {
    background: var(--warning-bg);
    color: #8B6B1A;
    border-left: 4px solid var(--warning);
}

.mms-alert-info {
    background: #f5e8ea;
    color: #732D3A;
    border-left: 4px solid #A6727C;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-eb-penuh {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #dc3545;
    text-align: center;
    border: 2px solid #b02a37;
}

/* ── ACTION BUTTONS ── */

.action-btns {
    display: flex;
    gap: 0.35rem;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn-reset {
    background: var(--warning-bg);
    color: var(--warning);
}

.action-btn-delete {
    background: var(--danger-bg);
    color: var(--danger);
}

.action-btn-hadir {
    background: var(--success-bg);
    color: var(--success);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.action-btn-hadir:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(93, 174, 120, 0.4);
}

.action-btn-hadir:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── EXPORT DROPDOWN ── */

.export-dropdown {
    position: relative;
    display: inline-block;
    z-index: 50;
}

.export-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 999;
    overflow: hidden;
    animation: slideDown 0.2s ease-out;
}

.export-dropdown-menu.show {
    display: block;
}

.export-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.export-dropdown-menu a:hover {
    background: #f5efed;
    color: #732D3A;
}

/* ── LIVE INDICATOR ── */

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--success);
    background: var(--success-bg);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}

/* ── PAGE HEADER ── */

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
}

.page-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── KUOTA BAR ── */

.kuota-bar {
    background: rgba(166, 114, 124, 0.1);
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.kuota-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #A6727C 0%, #D9BBB4 100%);
    transition: width 1s ease-out;
}

/* ── SCROLLBAR ── */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f5efed;
}

::-webkit-scrollbar-thumb {
    background: #D9BBB4;
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A6727C;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    .product {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mms-navbar .navbar-toggle {
        display: block;
    }

    .mms-navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mms-navbar .nav-links.show {
        display: flex;
    }

    .mms-navbar .navbar-inner {
        flex-wrap: wrap;
    }

    .mms-stat-card .stat-value {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.35rem;
    }

    .mms-table {
        font-size: 0.8rem;
    }

    .mms-table thead th,
    .mms-table tbody td {
        padding: 0.6rem 0.5rem;
    }

    .mms-btn {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }

    .navbar-logo {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .mms-stat-card {
        padding: 1rem;
    }

    .mms-stat-card .stat-value {
        font-size: 1.3rem;
    }
}

/* ── scanner disini ── */

.scanner-container {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid #D9BBB4;
}

#reader {
    width: 100% !important;
    border: none !important;
}

#reader video {
    border-radius: var(--radius-md);
}

.scan-result {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

.scan-result .result-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.scan-result.success {
    background: #E8F5ED;
    border: 2px solid #5DAE78;
}

.scan-result.warning {
    background: #FFF8E8;
    border: 2px solid #E5A63B;
}

.scan-result.error {
    background: #FDECEF;
    border: 2px solid #D45D6E;
}

/* ── QR ── */

.qr-wrapper {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: inline-block;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-pink);
}

.qr-wrapper img {
    border-radius: 8px;
}

.paket-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.paket-card {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #E5D5D0;
    border-radius: 12px;
    padding: 14px 18px;
    background-color: #FAF6F5;
    cursor: pointer;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.paket-card:hover {
    border-color: #A6727C;
    background-color: #FFFFFF;
}

.paket-card.active {
    border-color: #732D3A;
    background-color: #FFF5F6;
    box-shadow: 0 4px 12px rgba(115, 45, 58, 0.12);
}

.paket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paket-title {
    font-weight: 700;
    color: #1A1A2E;
    font-size: 0.95rem;
}

.paket-desc {
    font-size: 0.82rem;
    color: #7D7581;
}

.paket-card input[type="radio"] {
    accent-color: #732D3A;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.total-harga-box {
    background: linear-gradient(135deg, #732D3A, #8C3A4B);
    color: #FFFFFF;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    margin: 20px 0 25px;
    box-shadow: 0 4px 15px rgba(115, 45, 58, 0.2);
}

.total-harga-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.total-harga-rekening {
    font-size: 0.85rem;
    color: #FCEBEA;
    margin-bottom: 8px;
    font-weight: 500;
}

.total-harga-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.total-harga-coret {
    color: #E2B3B9;
    font-size: 0.95rem;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1.2;
}

.total-harga-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.fullpage-center {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.paket-card.paket-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.paket-card.paket-disabled .paket-title,
.paket-card.paket-disabled .paket-desc {
    text-decoration: line-through;
}

/* =========================================================
   ENHANCEMENT ADDITIONS — landing page interaktif
   Semua baru, gak ada rule di atas yang ditimpaa
   ========================================================= */

/* logo placeholder (fallback kalau logo.png belum ke-load) */
.logo-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--soft));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'CormorantGaramond', serif;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(115, 45, 58, 0.25);
}

/* hero background fallback (dipakai kalau bungaa.png belum ke-load) */
.bunga-bg-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(166, 114, 124, 0.55), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(217, 187, 180, 0.4), transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(115, 45, 58, 0.6), transparent 55%),
        linear-gradient(160deg, #2b1420 0%, #3d1a20 55%, #1a1a2e 100%);
}

/* kelopak bunga jatuh perlahan di hero — signature "blooming" */
.petals {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.petal {
    position: absolute;
    top: -8%;
    opacity: 0.85;
    animation-name: petal-fall;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes petal-fall {
    0% {
        transform: translateY(-10%) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(115vh) translateX(var(--drift, 40px)) rotate(340deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .petal {
        animation: none;
        display: none;
    }
}

/* fade-up reveal generik untuk section headers/card */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* countdown urgency strip di hero */
.countdown-strip {
    display: inline-flex;
    gap: 14px;
    margin-top: 34px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 46px;
}

.countdown-num {
    font-family: 'CormorantGaramond', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

/* gambar mms.png di card grid (Instagram/Youtube/Website) */
.card-thumb-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .card-thumb-img {
    transform: scale(1.12) rotate(-4deg);
}

/* tombol whatsapp langsung */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    background: var(--soft);
    color: #fff;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.wa-btn:hover {
    background: #5a2028;
    transform: translateY(-2px);
}

/* FAQ accordion */
.faq-list {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(166, 114, 124, 0.25);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--soft);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lavender);
    color: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--soft);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--blush);
    line-height: 1.65;
}

/* sticky CTA muncul setelah scroll lewat hero */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 150;
    background: var(--soft);
    color: #fff;
    padding: 14px 22px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(115, 45, 58, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.sticky-cta:hover {
    background: #5a2028;
}

/* copy-to-clipboard kecil di contact item */
.copy-hint {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--violet);
    border: 1px solid rgba(166, 114, 124, 0.3);
    padding: 4px 10px;
    border-radius: 99px;
    background: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.copy-hint:hover {
    background: var(--soft);
    color: #fff;
    border-color: var(--soft);
}

.copy-hint.copied {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}