/* ============================================
   SECTIONS — Luxury alternating cream/dark
   ============================================ */

/* --- INTRO (White with styled card) --- */
.intro {
    background: var(--white);
    padding: var(--space-5xl) 0;
}
.intro-grid {
    max-width: var(--container-narrow);
    margin: 0 auto;
}
/* Styled intro card with subtle 3D hover */
.intro-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    transition: all 0.6s var(--ease-out);
    position: relative;
}
.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.03);
}
@media (max-width: 768px) {
    .intro { padding: var(--space-2xl) 0; }
}
@media (max-width: 600px) {
    .intro { padding: var(--space-xl) 0; }
    .intro-card { padding: var(--space-2xl) var(--space-lg); }
}
.intro-text h2 { margin-bottom: var(--space-lg); }
.intro-text p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}
.intro-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.intro-stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.intro-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.intro-visual { display: flex; align-items: center; justify-content: center; }
.intro-image-frame {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.04);
}
.intro-image-frame svg { width: 60px; height: 60px; opacity: 0.12; }

@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; }
    .intro-visual { display: none; }
    /* Network cities: 2x2 grid on mobile */
    .network-cities { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
}
@media (max-width: 600px) {
    .intro-stats { flex-wrap: wrap; gap: var(--space-xl); }
    .intro-text p { font-size: 0.95rem; }
}

/* --- SERVICES (Cream - alternating) --- */
.services {
    background: var(--cream);
    padding: var(--space-5xl) 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
.service-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    transition: all var(--duration-slow) var(--ease-out);
    cursor: pointer;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-card:hover .service-icon {
    background: var(--gold);
    transform: scale(1.05);
}
.service-card:hover .service-icon svg { color: #fff; }
.service-icon { transition: all var(--duration-normal) var(--ease-out); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(194,163,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}
.service-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.service-tag {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}
.service-card h3 { color: var(--text-dark); margin-bottom: var(--space-sm); font-size: 1.4rem; }
.service-card p { color: var(--text-body); font-size: 0.88rem; line-height: 1.75; margin-bottom: var(--space-md); }
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.service-features li::before { content: ''; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding: 0.6rem 1.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 0;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
}
.service-link:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.service-link svg { width: 12px; height: 12px; transition: transform var(--duration-normal) var(--ease-out); }
.service-card:hover .service-link svg { transform: translateX(4px); }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* --- BODY EXPLORER (Dark Navy) --- */
.diagnostics {
    background: var(--navy);
    color: var(--text-on-dark);
    padding: var(--space-5xl) 0;
}
.diagnostics .section-header p { color: var(--text-on-dark-secondary); }
.diagnostics-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}
.body-figure {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}
.body-container { position: relative; width: 300px; }
.body-svg-wrapper svg { width: 100%; height: auto; }

/* Diagnostic cards */
.diagnostic-cards { display: flex; flex-direction: column; gap: var(--space-md); }
.diagnostic-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
    opacity: 0.6;
}
.diagnostic-card.active, .diagnostic-card:hover {
    opacity: 1;
    border-color: rgba(194,163,109,0.25);
    background: rgba(194,163,109,0.05);
    transform: translateX(4px);
}
.diagnostic-card { transition: all var(--duration-normal) var(--ease-out); }
.diagnostic-card-header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-sm); }
.diagnostic-card-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(194,163,109,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diagnostic-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.diagnostic-card-title { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
.diagnostic-card-tag { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.diagnostic-card p { color: var(--text-on-dark-secondary); font-size: 0.86rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.diagnostic-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.diagnostic-features li {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.74rem; color: var(--text-on-dark-muted); padding: 0.2rem 0;
}
.diagnostic-features li svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) { .diagnostics-layout { grid-template-columns: 1fr; } .body-figure { position: static; } }

/* --- PATIENTS (Cream) --- */
.patients {
    background: var(--white);
    padding: var(--space-5xl) 0;
}
.patients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.patient-card {
    padding: var(--space-2xl);
    background: var(--ivory);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-md);
    transition: all var(--duration-slow) var(--ease-out);
}
.patient-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.patient-card:hover .patient-card-icon { background: var(--gold); transform: scale(1.05); }
.patient-card:hover .patient-card-icon svg { color: #fff; }
.patient-card-icon { transition: all var(--duration-normal) var(--ease-out); }
.patient-card-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(194,163,109,0.08);
    display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-lg);
}
.patient-card-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.patient-card h3 { color: var(--text-dark); margin-bottom: var(--space-sm); font-size: 1.4rem; }
.patient-card p { color: var(--text-body); font-size: 0.9rem; line-height: 1.75; margin-bottom: var(--space-lg); }
.patient-card ul li {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0; font-size: 0.8rem; color: var(--text-muted);
}
.patient-card ul li svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 768px) { .patients-grid { grid-template-columns: 1fr; } }

/* --- EXECUTIVE (White) --- */
.executive {
    background: var(--white);
    padding: var(--space-5xl) 0;
}
.executive-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-4xl); align-items: center; }
.executive-text h2 { margin-bottom: var(--space-lg); }
.executive-text p { color: var(--text-body); font-size: 1rem; line-height: 1.85; margin-bottom: var(--space-lg); }
.executive-features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-xl); }
.exec-feature {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: var(--space-md); border-radius: var(--radius-md);
    background: var(--cream-light); border: 1px solid rgba(0,0,0,0.03);
}
.exec-feature-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(194,163,109,0.08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.exec-feature-icon svg { width: 14px; height: 14px; color: var(--gold-dark); }
.exec-feature h4 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1px; }
.exec-feature p { font-size: 0.72rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

@media (max-width: 900px) { .executive-content { grid-template-columns: 1fr; } }

/* --- NETWORK (Dark) --- */
.network {
    background: var(--navy);
    color: var(--text-on-dark);
    padding: var(--space-5xl) 0;
}
.network .section-header p { color: var(--text-on-dark-secondary); }
.network-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.network-city {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
}
.network-city:hover { border-color: rgba(194,163,109,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.network-city { transition: all var(--duration-normal) var(--ease-out); }
.network-city:hover .network-city-flag { transform: scale(1.15); }
.network-city-flag { transition: transform var(--duration-normal) var(--ease-out); }
.network-city-flag { font-size: 1.8rem; margin-bottom: var(--space-sm); }
.network-city h4 { color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
.network-city p { font-size: 0.72rem; color: var(--text-on-dark-muted); }

@media (max-width: 768px) { .network-cities { grid-template-columns: 1fr 1fr; } }

/* --- WHY US (Cream - alternating) --- */
.why-us {
    background: var(--cream);
    padding: var(--space-5xl) 0;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.why-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.why-card:hover .why-icon { background: var(--gold); transform: scale(1.05); }
.why-card:hover .why-icon svg { color: #fff; }
.why-icon { transition: all var(--duration-normal) var(--ease-out); }
.why-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(194,163,109,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-lg);
}
.why-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.why-card h4 { color: var(--text-dark); font-size: 1.1rem; margin-bottom: var(--space-xs); }
.why-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.65; }

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* --- TRUST (White) --- */
.trust { background: var(--white); padding: var(--space-2xl) 0; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: var(--space-3xl); flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; color: var(--text-secondary); font-weight: 500;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--gold); }

/* --- CTA (Dark) --- */
.cta-section {
    background: var(--navy);
    color: #fff;
    padding: var(--space-5xl) 0;
    text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: var(--space-lg); }
.cta-section p { color: var(--text-on-dark-secondary); font-size: 1.05rem; max-width: 550px; margin: 0 auto var(--space-2xl); }
.cta-buttons { display: flex; gap: var(--space-md); justify-content: center; }

/* --- FOOTER (Navy deep) --- */
.footer { background: var(--navy-deep); color: #fff; padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.82rem; line-height: 1.7; margin-top: var(--space-md); }
.footer-col h4 {
    font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-lg);
}
.footer-col a { display: block; padding: 0.25rem 0; font-size: 0.78rem; color: var(--text-on-dark-muted); transition: color var(--duration-fast) ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.68rem; color: var(--text-on-dark-muted);
}
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--duration-fast) ease;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(194,163,109,0.1); }
.footer-social svg { width: 13px; height: 13px; color: var(--text-on-dark-muted); }
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a { color: var(--text-on-dark-muted); text-decoration: none; font-size: 0.68rem; transition: color var(--duration-fast) ease; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; } .footer-legal { justify-content: center; flex-wrap: wrap; } }

/* --- AI ASSISTANT --- */
.ai-assistant { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.ai-toggle {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    transition: all var(--duration-normal) var(--ease-out);
}
.ai-toggle:hover { transform: scale(1.06); box-shadow: 0 6px 30px rgba(0,0,0,0.25); }
.ai-toggle svg { width: 22px; height: 22px; color: #fff; }
.ai-toggle .close-icon { display: none; }
.ai-assistant.open .ai-toggle { background: #fff; border-color: rgba(0,0,0,0.1); }
.ai-assistant.open .ai-toggle .chat-icon { display: none; }
.ai-assistant.open .ai-toggle .close-icon { display: block; color: var(--text-primary); }
.ai-assistant.open .ai-toggle svg { color: var(--text-primary); }

.ai-panel {
    position: absolute; bottom: calc(100% + 14px); right: 0;
    width: 370px; max-height: 540px;
    background: #fff; border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    display: flex; flex-direction: column;
    opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.96);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}
.ai-assistant.open .ai-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.ai-panel-header {
    padding: var(--space-lg); border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: var(--space-md); background: var(--cream-light);
}
.ai-avatar {
    width: 34px; height: 34px; border-radius: 0;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
}
.ai-avatar img { width: 34px; height: 34px; object-fit: contain; }
.ai-avatar svg { display: none; }
.ai-panel-header h4 { font-family: var(--font-body); font-size: 0.84rem; color: var(--text-dark); font-weight: 600; }
.ai-panel-header p { font-size: 0.64rem; color: var(--gold-dark); }

.ai-messages {
    flex: 1; overflow-y: auto; padding: var(--space-lg);
    display: flex; flex-direction: column; gap: var(--space-md); min-height: 280px;
    background: #fff;
}
.ai-msg {
    max-width: 85%; padding: 0.75rem 1rem;
    border-radius: var(--radius-md); font-size: 0.8rem; line-height: 1.6;
}
.ai-msg--bot {
    background: var(--cream-light); color: var(--text-body);
    align-self: flex-start; border-bottom-left-radius: 2px;
}
.ai-msg--user {
    background: var(--navy); color: #fff;
    align-self: flex-end; border-bottom-right-radius: 2px;
}

.ai-options { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.4rem; }
.ai-option-btn {
    padding: 0.4rem 0.8rem; border-radius: var(--radius-full);
    border: 1px solid rgba(0,0,0,0.1); background: #fff;
    color: var(--text-dark); font-size: 0.68rem; font-weight: 500;
    cursor: pointer; transition: all var(--duration-fast) ease;
}
.ai-option-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.ai-input-area {
    padding: var(--space-md); border-top: 1px solid rgba(0,0,0,0.05);
    display: flex; gap: 0.4rem; background: #fff;
}
.ai-input {
    flex: 1; padding: 0.6rem 0.9rem; border-radius: var(--radius-full);
    border: 1px solid rgba(0,0,0,0.1); background: var(--cream-light);
    color: var(--text-dark); font-size: 0.8rem; font-family: var(--font-body);
    outline: none; transition: border-color var(--duration-fast) ease;
}
.ai-input:focus { border-color: var(--gold); }
.ai-input::placeholder { color: var(--text-light); }
.ai-send {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--navy); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background var(--duration-fast) ease; border: none;
}
.ai-send:hover { background: var(--navy-light); }
.ai-send svg { width: 14px; height: 14px; color: var(--gold); }

@media (max-width: 480px) { .ai-panel { width: calc(100vw - 32px); right: -8px; } }

/* --- INTAKE FORM --- */
.intake-form { max-width: 100%; }
.form-steps {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.form-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}
.form-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
}
.form-step.active { color: var(--text-primary); }
.form-step.active span { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-step.done span { background: var(--gold); color: #fff; border-color: var(--gold); }

.form-panel { display: none; }
.form-panel.active { display: block; }

.form-group { margin-bottom: var(--space-lg); }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--cream-light);
    transition: border-color var(--duration-fast) ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-row { display: flex; gap: var(--space-md); }
@media (max-width: 600px) { .form-row { flex-direction: column; } }

.form-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.form-option {
    padding: 0.55rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: #fff;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}
.form-option:hover { border-color: var(--navy); color: var(--text-primary); }
.form-option.selected { background: var(--navy); color: #fff; border-color: var(--navy); }

.form-success { display: none; }
.form-success.active { display: block; }

/* --- Body Explorer Responsive --- */
@media (max-width: 768px) {
    .body-explorer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    .body-explorer-grid > div:first-child {
        max-width: 260px;
        margin: 0 auto;
    }
}

/* Body hotspot pulse animation */
@keyframes hotspot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,164,103,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(197,164,103,0); }
}
.body-hotspot-btn:hover {
    background: rgba(197,164,103,0.45) !important;
    transform: translate(-50%,-50%) scale(1.3) !important;
    transition: all 0.3s ease;
}
