/* ═══════════════════════════════════════════════════════
   AURA INTUITIVE — Styles
   Theme: Bordeaux / Wine + Gold accents
   ═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
    --wine:       #7b2d3f;
    --wine-deep:  #5c1a2e;
    --wine-light: #9e4a5e;
    --gold:       #d4a76a;
    --gold-light: #e8c99b;
    --bg-dark:    #0e060a;
    --bg-card:    rgba(123, 45, 63, 0.08);
    --text:       #e8d5c4;
    --text-muted: rgba(232, 213, 196, 0.55);
    --border:     rgba(123, 45, 63, 0.25);
    --glass:      rgba(30, 12, 20, 0.65);
    --radius:     16px;
    --radius-sm:  10px;
    --shadow:     0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════════════════════
   BACKGROUND: Aurora + Stars
   ═══════════════════════════════════════════════════════ */

.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--wine), transparent 70%);
    top: -10%; left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #4a1942, transparent 70%);
    top: 50%; right: -10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--wine-deep), transparent 70%);
    bottom: -5%; left: 30%;
    animation-delay: -14s;
}

.orb-4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(212, 167, 106, 0.3), transparent 70%);
    top: 20%; right: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(40px, -30px) scale(1.05); }
    50%      { transform: translate(-20px, 40px) scale(0.95); }
    75%      { transform: translate(30px, 20px) scale(1.03); }
}

.stars-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: twinkle var(--dur) ease-in-out infinite;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50%      { opacity: var(--max-op); transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(14, 6, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 2rem;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--wine-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 560px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    animation: pulse-scroll 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes pulse-scroll {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #c4944f);
    color: #1a0a10;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 167, 106, 0.35);
}

.btn-wine {
    background: linear-gradient(135deg, var(--wine), var(--wine-deep));
    color: var(--gold-light);
    border: 1px solid rgba(212, 167, 106, 0.2);
}

.btn-wine:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 63, 0.35);
}

.btn-glass {
    background: var(--glass);
    color: var(--gold);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(123, 45, 63, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */

.section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.section-sep .line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-sep .diamond {
    color: var(--gold);
    font-size: 0.7rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(212, 167, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════ */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    border-color: rgba(212, 167, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.highlight {
    border-color: rgba(212, 167, 106, 0.3);
    background: linear-gradient(135deg, rgba(123, 45, 63, 0.15), var(--glass));
}

.card-badge {
    position: absolute;
    top: -12px;
    background: linear-gradient(135deg, var(--gold), #c4944f);
    color: #1a0a10;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.card-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 1.5rem;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
}

.card-features .check {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.card-price {
    margin: 0.5rem 0 0.2rem;
}

.card-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.card-price .currency {
    font-size: 1.3rem;
    color: var(--gold);
    margin-left: 2px;
}

.card-price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════════════════════ */

.disclaimer-banner {
    background: rgba(123, 45, 63, 0.1);
    border: 1px solid rgba(123, 45, 63, 0.25);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}

.disclaimer-banner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.disclaimer-banner strong {
    color: var(--text);
}

/* Prominent standalone disclaimer */
.disclaimer-section {
    padding: 2rem 2rem 0;
}

.disclaimer-prominent {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.15), rgba(123, 45, 63, 0.2));
    border: 2px solid rgba(220, 80, 80, 0.35);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
}

.disclaimer-prominent .disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.disclaimer-prominent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #f0a0a0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-prominent p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.disclaimer-prominent p strong {
    color: #f0a0a0;
}

/* ═══════════════════════════════════════════════════════
   DONATIONS
   ═══════════════════════════════════════════════════════ */

.donations-wrapper {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
}

.donations-wrapper .icon-heart {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.donations-wrapper > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}

.donation-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.donation-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 167, 106, 0.1);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FORM PAGE
   ═══════════════════════════════════════════════════════ */

.form-page {
    padding-top: 8rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

.contact-form {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-group label span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(14, 6, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Disclaimer in form */
.disclaimer {
    background: rgba(123, 45, 63, 0.1);
    border: 1px solid rgba(123, 45, 63, 0.2);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-text strong {
    color: var(--text);
}

.disclaimer-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer-check input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-actions {
    text-align: center;
}

.form-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.form-message {
    display: none;
    text-align: center;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f5a0a0;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #a0f5b0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(14, 6, 10, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border);
        transition: right var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 3rem 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   ADMIN PAGE STYLES
   ═══════════════════════════════════════════════════════ */

.admin-page {
    padding-top: 6rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Login */
.admin-login {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.admin-login h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.admin-login p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.login-form {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.login-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(14, 6, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    outline: none;
    transition: var(--transition);
}

.login-form input:focus {
    border-color: var(--gold);
}

.login-error {
    color: #f5a0a0;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: none;
}

/* Dashboard */
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.admin-tab {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.admin-tab.active {
    background: rgba(212, 167, 106, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.admin-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Consultation cards */
.consult-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consult-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.consult-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.consult-card:hover {
    border-color: rgba(212, 167, 106, 0.2);
}

.consult-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.consult-service {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
}

.consult-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-submitted {
    background: rgba(212, 167, 106, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 167, 106, 0.3);
}

.badge-answered {
    background: rgba(40, 167, 69, 0.15);
    color: #7ddf90;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.consult-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.consult-meta strong {
    color: var(--text);
}

.consult-message {
    background: rgba(14, 6, 10, 0.5);
    border: 1px solid rgba(123, 45, 63, 0.15);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-wrap;
    margin-bottom: 1rem;
}

.consult-response-box {
    margin-top: 0.5rem;
}

.consult-response-box label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.consult-response-box textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(14, 6, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    min-height: 140px;
    resize: vertical;
    outline: none;
    transition: var(--transition);
    margin-bottom: 0.8rem;
}

.consult-response-box textarea:focus {
    border-color: var(--gold);
}

.consult-prev-response {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-wrap;
}

.consult-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.consult-actions .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
}
