.elementor-382 .elementor-element.elementor-element-fcf59da{--display:flex;}.elementor-382 .elementor-element.elementor-element-fcf59da:not(.elementor-motion-effects-element-type-background), .elementor-382 .elementor-element.elementor-element-fcf59da > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-uicore_secondary );}/* Start custom CSS for html, class: .elementor-element-8a240aa *//* ─────────────────────────────────────────────────────────────
   HORUS EYES — DESIGN TOKENS
   ───────────────────────────────────────────────────────────── */
:root {
    --he-bg: #0A0804;
    --he-surface: #120E08;
    --he-gold: #C9952A;
    --he-gold-light: #E5C158;
    --he-text: #EAE6DF;
    --he-muted: #8E877B;
    --he-border: rgba(201, 149, 42, 0.15);
    --he-font-head: 'Cinzel', serif, system-ui;
    --he-font-body: 'Inter', system-ui, sans-serif;
}

#heCarePage {
    background-color: var(--he-bg);
    color: var(--he-text);
    font-family: var(--he-font-body);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.he-care-container {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

/* ─────────────────────────────────────────────────────────────
   HEADER SECTIONS
   ───────────────────────────────────────────────────────────── */
.he-care-header {
    text-align: center;
    margin-bottom: 4rem;
}

.he-care-badge {
    display: inline-block;
    font-family: var(--he-font-head);
    color: var(--he-gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: 1px solid var(--he-border);
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(201, 149, 42, 0.02);
}

.he-care-header h1 {
    font-family: var(--he-font-head);
    color: var(--he-gold);
    font-size: 3rem;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.he-care-meta {
    color: var(--he-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   TAB CONTROLS
   ───────────────────────────────────────────────────────────── */
.he-care-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid var(--he-border);
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
}

.he-care-tab {
    background: transparent;
    border: 1px solid var(--he-border);
    color: var(--he-muted);
    padding: 0.75rem 1.5rem;
    font-family: var(--he-font-head);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.he-care-tab:hover {
    color: var(--he-gold-light);
    border-color: rgba(201, 149, 42, 0.4);
    background: rgba(201, 149, 42, 0.02);
}

.he-care-tab.active {
    color: var(--he-text);
    border-color: var(--he-gold);
    background: var(--he-surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ─────────────────────────────────────────────────────────────
   CONTENT LAYOUT PANELS
   ───────────────────────────────────────────────────────────── */
.he-care-section {
    display: none; /* Controlled via JavaScript active state toggle */
    animation: fadeIn 0.4s ease forwards;
}

.he-care-section.active {
    display: block;
}

.he-section-intro {
    max-width: 750px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.he-section-intro h2 {
    font-family: var(--he-font-head);
    color: var(--he-gold-light);
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.he-section-intro p {
    color: var(--he-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* CARDS */
.he-care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.he-care-card {
    background: var(--he-surface);
    border: 1px solid var(--he-border);
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.he-care-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 149, 42, 0.35);
}

.he-care-card h3 {
    font-family: var(--he-font-head);
    color: var(--he-gold);
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.he-care-card p {
    color: rgba(234, 230, 223, 0.8);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.65;
}

.he-care-card strong {
    color: var(--he-gold-light);
}

/* FOOTER CALLOUT */
.he-care-footer {
    margin-top: 5rem;
}

blockquote {
    background: var(--he-surface);
    border-left: 2px solid var(--he-gold);
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 0 4px 4px 0;
    text-align: center;
}

blockquote strong {
    font-family: var(--he-font-head);
    color: var(--he-gold-light);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

blockquote a {
    color: var(--he-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

blockquote a:hover {
    border-color: var(--he-gold);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVENESS
   ───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
    .he-care-container {
        margin: 3rem auto;
        padding: 0 1.5rem;
    }
    .he-care-header h1 {
        font-size: 2.25rem;
    }
    .he-care-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    .he-care-tab {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */