/* HERO FULL IMAGE */

.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    background: #000;
    
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72%;
    z-index: 2;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px 42px;
    box-sizing: border-box;
}
/* Center text */
.hero-content {
    text-align: center;
    margin-top: 40px;
}

.hero-title {
    font-size: 42px;
    color: #f5d97a;
    text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.hero-subtext {
    max-width: 700px;
    margin: 10px auto;
    color: #ddd;
    font-size: 18px;
    display: none;
}

/* Bottom buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    transform: translateY(-34px);
}

.hero-btn {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow:
        0 4px 10px rgba(0,0,0,0.4),   /* depth shadow */
        0 0 8px rgba(212,175,55,0.3); /* soft gold glow */

    transition: all 0.25s ease;
}
.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);

    background: linear-gradient(135deg, #f5d97a, #d4af37);

    box-shadow:
        0 6px 16px rgba(0,0,0,0.5),
        0 0 16px rgba(212,175,55,0.6),
        0 0 30px rgba(212,175,55,0.3);
}

/* Active navigation highlight */
.hero-btn.active,
.nav-btn.active {
    background: linear-gradient(45deg, #d4af37, #f5d97a);
    color: #000;
    box-shadow:
        0 0 12px rgba(212,175,55,0.5),
        0 0 24px rgba(212,175,55,0.3);
        animation: goldPulse 2.5s infinite;
}

/* 🔥 SPIRIT HEADER (FIXED) */

/* ===== PAGE BASE STYLES ===== */

html, body {
    margin: 0;
    padding: 0;
    background: #0b0b0b;
    
}

body {
    margin: 0;
    background: #0b0b0b;
    color: white;
    font-family: Arial, sans-serif;
    animation: pageFade 1.2s ease;
    
}

.site-wrap {
    display: block;
}

/* ===== NAV ===== */

.hero {
    text-align: center;
    padding: 10px 0px;
    position: relative;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    position: relative;
    z-index: 10;
}

/* Navigation */
.form-nav {
    margin: 0;
}

.nav-btn {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #f5d97a;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 0 8px rgba(255, 200, 80, 0.4);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
    transform: translateY(-2px);
}
/* ===== PAGE CONTENT ===== */


/* ===== SUBTITLES ===== */

.section-subtitle {
    position: relative;
    color: #f5d97a;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
    animation: softTitleGlow 4s ease-in-out infinite;
}

.section-subtitle::before {
    content: "";
    display: block;
    width: 130px;
    height: 2px;
    margin: 0 auto 6px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    opacity: 0.8;
}

/* ===== CONTENT BLOCK ===== */

/* ===== NAV LINKS ===== */

.armour-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 8px;
    
}

.armour-nav a {
    background: #1a1a1a;
    color: #f5d97a;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.18);
    transition: all 0.25s ease;
    font-weight: bold;
    
}

.armour-nav a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(212,175,55,0.35);
}

.armour-nav .collection-link {
    background: #d4af37;
    color: #000;
}

/* ===== FOOTER ===== */

.footer {
    margin-top: 30px;
    background: #000;
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-message {
    text-align: center;
    color: #d4af37;
    font-style: italic;
    margin: 10px 0;
    opacity: 0.9;
}

/* 🔥 FOOTER SOCIAL LINKS */

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;

    display: inline-block;
}

.footer-links a:hover {
    color: #f5d97a;

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.35);

    transform: translateY(-2px);
}

/* ===== PRAISE & WORSHIP FINAL POLISH ===== */

.spirit-header {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 22px;
    border-bottom: 2px solid rgba(212,175,55,0.25);
}

.spirit-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 63%;
    display: block;
}

.spirit-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #000);

}

.page-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 0;
    padding-top: 0px;
    text-align: center;
}

.page-title {
    color: #f5d97a;
    font-size: 42px;
    margin-bottom: 6px;
    animation: titleGlow 4s ease-in-out infinite;
}

.page-text {
    max-width: 760px;
    margin: 0 auto 12px;
    color: #ccc;
    line-height: 1.7;
    font-size: 18px;
}

.feature-section p {
   margin-bottom: 12px;

}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px;
    margin-bottom: 12px;
}

.feature-card {
    background: #1a1a1a;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.12);
    transition: 0.3s;
    min-height: 100px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: 0 0 18px rgba(212,175,55,0.18);
}

.feature-card h3 {
    color: #f5d97a;
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-card p {
    color: #ddd;
    line-height: 1.65;
    font-size: 16px;
}

.hero-glow {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    line-height: 0;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
}


.blog-post-content {
    text-align: left;
    max-width: 790px;
    margin: 0 auto 10px;
    color: #ddd;
    line-height: 1.85;
    font-size: 18px;
}

.blog-post-content p {
    margin-bottom: 10px;
}

.armour-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 8px;
}

/* CONTACT INFO */
.contact-info {
    max-width: 700px;
    margin: 24px auto 10px;
    text-align: center;
}
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-card {
    background: #111;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    min-width: 220px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 12px rgba(212,175,55,0.4),
        0 0 24px rgba(212,175,55,0.2);
}
.contact-card h4 {
    color: #f5d97a;
    margin-bottom: 10px;
}

.contact-card p {
    color: #ddd;
    margin: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #f5d97a;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

@keyframes goldPulse {
    0% {
        box-shadow:
            0 0 6px rgba(212,175,55,0.3),
            0 0 12px rgba(212,175,55,0.2);
    }
    50% {
        box-shadow:
            0 0 12px rgba(212,175,55,0.6),
            0 0 24px rgba(212,175,55,0.3);
    }
    100% {
        box-shadow:
            0 0 6px rgba(212,175,55,0.3),
            0 0 12px rgba(212,175,55,0.2);
    }
}
@keyframes headerGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 6px rgba(212,175,55,0.2));
    }
    50% {
        filter: brightness(1.05) drop-shadow(0 0 18px rgba(212,175,55,0.4));
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 6px rgba(212,175,55,0.2));
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(212,175,55,0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(212,175,55,0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(212,175,55,0.3);
    }


}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== CINEMATIC PAGE LOAD ===== */

@keyframes pageFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== SOFT RISE IN ===== */

.page-content,
.hero,
.footer,
.spirit-header {
    animation: riseIn 1s ease;
    
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CINEMATIC HEADER ===== */

.spirit-header {
    position: relative;
    overflow: hidden;
}

.spirit-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.03),
        rgba(0,0,0,0.18)
    );
    pointer-events: none;
}

/* ===== SLOW LIGHT MOVEMENT ===== */

.spirit-header::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -30%;
    width: 60%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(255,215,120,0.10),
        transparent 70%
    );
    transform: rotate(8deg);
    animation: lightSweep 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0% {
        transform: translateX(0) rotate(8deg);
        opacity: 0.35;
    }
    50% {
        transform: translateX(40%) rotate(8deg);
        opacity: 0.55;
    }
    100% {
        transform: translateX(0) rotate(8deg);
        opacity: 0.35;
    }
}  /* ✅ THIS WAS MISSING */

@keyframes armourLightSweep {
    0% {
        transform: translateX(0) rotate(8deg);
        opacity: 0.25;
    }
    50% {
        transform: translateX(50%) rotate(8deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) rotate(8deg);
        opacity: 0.25;
    }
}
/* ===== CINEMATIC IMAGE FEEL ===== */

.feature-image {
    max-width: 980px;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 6px;
    border-radius: 18px;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.6),
        0 0 24px rgba(212,175,55,0.15);
}

.full-image {
    max-height: none;
    height: auto;
    object-fit: contain;
}

.short-image {
    max-height: none;
    object-fit: contain;
}

.feature-image:hover {
    transform: scale(1.015);
    box-shadow:
        0 14px 36px rgba(0,0,0,0.7),
        0 0 30px rgba(212,175,55,0.22);
}

.armour-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.armour-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255,255,255,0.06) 35%,
        rgba(255,215,120,0.18) 50%,
        rgba(255,255,255,0.06) 65%,
        transparent 100%
    );
    transform: translateX(-120%);
    animation: armourImageReveal 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes armourImageReveal {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    20% {
        opacity: 0.35;
    }
    50% {
        transform: translateX(120%);
        opacity: 0.55;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes softTitleGlow {
    0% {
        text-shadow: 0 0 8px rgba(212,175,55,0.18);
    }
    50% {
        text-shadow: 0 0 16px rgba(212,175,55,0.35);
    }
    100% {
        text-shadow: 0 0 8px rgba(212,175,55,0.18);
    }
}

/* ===== QUOTE CINEMATIC DEPTH ===== */

.blog-quote {
    margin: 22px auto 10px;
    padding: 18px 22px;
    border-left: 4px solid #d4af37;
    background: linear-gradient(135deg, #141414, #1c1c1c);
    color: #f5d97a;
    font-style: italic;
    border-radius: 10px;
    box-shadow: 0 0 14px rgba(212,175,55,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    max-width: 600px;
}

.blog-quote.secondary {
    color: #f5d97a;
    opacity: 0.85;
    font-size: 1.05rem;
    border-left: 2px solid rgba(212,175,55,0.4);
    background: linear-gradient(135deg, #121212, #181818);
}

.blog-quote:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(212,175,55,0.2),
        0 0 36px rgba(212,175,55,0.08);
}

.feature-grid {
    max-width: 980px;
    margin: 24px auto 12px;
}

.contact-info,
.blog-form-box {
    max-width: 700px;
    margin: 24px auto 10px;
    text-align: center;
}
.blog-form select {
    grid-column: 1 / -1;
}

.blog-form {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.blog-form-text {
    color: #ddd;
    margin-bottom: 16px;
    font-size: 16px;
}

.blog-form input,
.blog-form select,
.blog-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.35);
    background: #111;
    color: #fff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.blog-form input:focus,
.blog-form select:focus,
.blog-form textarea:focus {
    border-color: #f5d97a;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.blog-form textarea {
    grid-column: 1 / -1;
    min-height: 150px;
    resize: vertical;
}

.blog-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212,175,55,0.35);
}
/* ===== BUTTON CINEMATIC FEEL ===== */

.hero-btn,
.nav-btn,
.submit-btn,
.armour-nav a {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(212,175,55,0.5),
        0 0 24px rgba(212,175,55,0.25);
}
.armour-nav a {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* ===== ARMOUR LINK GLOW ===== */

.collection-link {
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    

    box-shadow:
        0 0 10px rgba(212,175,55,0.35),
        0 0 20px rgba(212,175,55,0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

    animation: softPulse 4.5s ease-in-out infinite;
    cursor: default;

}

.collection-link:hover {
    transform: translateY(-3px) scale(1.02);

    background: linear-gradient(135deg, #f5d97a, #d4af37);

    box-shadow:
        0 0 14px rgba(212,175,55,0.6),
        0 0 30px rgba(212,175,55,0.25);
}

.collection-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: buttonShimmer 10s ease-in-out infinite;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 6px rgba(212,175,55,0.2);
    }
    50% {
        box-shadow: 0 0 14px rgba(212,175,55,0.45);
    }
    100% {
        box-shadow: 0 0 6px rgba(212,175,55,0.2);
    }
}

@keyframes buttonShimmer {
    0% {
        left: -120%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        left: 120%;
        opacity: 0.4;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}
.feature-section {
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 40px;
    overflow: hidden;
}
.feature-section::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -40%;
    width: 60%;
    height: 160%;
    background: radial-gradient(
        circle,
        rgba(255,215,120,0.08),
        transparent 70%
    );
    transform: rotate(8deg);
    animation: armourLightSweep 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.feature-section::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 120px;
    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.08) 0%,
        rgba(212,175,55,0.03) 40%,
        transparent 75%
    );
    pointer-events: none;
    z-index: 0;
}

.feature-section > * {
    position: relative;
    z-index: 1;
}

.blog-category-grid {
    margin-top: 30px;
    margin-bottom: 30px;
}

.fancy-divider::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    margin: 10px auto 0;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    opacity: 0.85;
}

.blog-post-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 24px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid rgba(212,175,55,0.16);
    border-radius: 18px;
    box-shadow:
        0 0 18px rgba(212,175,55,0.08),
        0 10px 30px rgba(0,0,0,0.35);
}

.blog-post-title {
    color: #f5d97a;
    font-size: 30px;
    margin: 8px 0 16px;
    text-align: center;
}

.blog-meta {
    color: #bfa85a;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* 🔥 BLOG GRID (FINAL CLEAN) */
.blog-list {
    max-width: 900px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.blog-list-title {
    color: #f5d97a;
    font-size: 24px;
    margin: 0 0 10px;
}

.blog-list-text {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
}

.blog-post-title a,
.blog-list-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.blog-post-title a:hover,
.blog-list-title a:hover {
    color: #f5d97a;
    text-shadow: 0 0 10px rgba(212,175,55,0.35);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 22px;
    }

    .blog-post-content,
    .page-text {
        font-size: 17px;
    }

    .spirit-header {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .spirit-header {
        height: 220px;
    }

    .page-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 20px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-note {
    font-size: 0.9rem;
    color: #c9a646;
    margin-bottom: 8px;
}

.form-note,
.blog-form input[type="file"],
.submit-btn {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: buttonShimmer 6s ease-in-out infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(212,175,55,0.5),
        0 0 24px rgba(212,175,55,0.25);
}

/* === POST IMAGES === */
.post-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    object-fit: cover;

    transition: transform 0.3s ease;

    box-shadow: 0 0 25px rgba(255, 140, 0, 0.4);
}

.post-image:hover {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.post-image-wrap {
    text-align: center;
    margin-bottom: 25px;
}

.scripture {
    text-align: center;
    font-style: italic;
    color: #f5d76e;
    margin-bottom: 25px;
}

/* 🔥 FEATURED TEACHING UPGRADE */
.featured-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 20px;
    box-shadow:
        0 0 18px rgba(212,175,55,0.08),
        0 12px 34px rgba(0,0,0,0.35);
    text-align: center;
}

.featured-card .post-image-wrap {
    max-width: 820px;
    margin: 20px auto 22px;
}

.featured-card .blog-list-title {
    font-size: 30px;
    margin-bottom: 12px;
}

.featured-card .blog-list-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 22px rgba(212,175,55,0.14),
        0 16px 38px rgba(0,0,0,0.42);
}

/* 🔥 FEATURED IMAGE OVERLAY */
.featured-image-overlay {
    position: relative;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-align: left;

    text-shadow:
        0 0 10px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6);

    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-image-overlay:hover .overlay-text {
    opacity: 1;
}
/* 🔥 HERO DARK OVERLAY + GLOW */

/* 🔥 HERO IMAGE */
.hero-bg {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto;
    transform: scaleX(0.99) scaleY(0.72);
    transform-origin: top center;
    filter: brightness(1.05) contrast(1.04) saturate(1.05);
    animation: none;
}

/* 🔥 HERO GLOW FADE */
@keyframes heroGlowFade {
    0% {
        opacity: 0.92;
        transform: scale(0.74);
        filter: brightness(1.02) saturate(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(0.76);
        filter: brightness(1.08) saturate(1.08);
    }
}
/* 🔥 HERO SCRIPTURE */
.hero-scripture {
    position: relative;
    width: min(90%, 760px);
    margin: 0 auto 12px;
    margin-bottom: 8px;
    transform: translateY(-28px);
    text-align: center;
    color: #ffeaa7;
    font-size: 1.08rem;
    line-height: 1.45;
    font-style: italic;
    opacity: 0.95;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 215, 120, 0.22);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    text-shadow:
        0 0 8px rgba(0,0,0,0.8),
        0 0 16px rgba(0,0,0,0.5);
    box-shadow: 0 0 18px rgba(255, 200, 80, 0.12);
}

.hero-scripture-ref {
    display: inline-block;
    margin-top: 6px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #f5d97a;
}

.hero-full::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    pointer-events: none;

    box-shadow:
        inset 0 0 80px rgba(0,0,0,0.6),
        inset 0 0 120px rgba(0,0,0,0.8);
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.blog-scripture {
    margin-top: 12px;
    padding: 10px 14px;

    font-size: 0.95rem;
    color: #f5d67a;
    text-align: center;
    line-height: 1.6;

    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;

    box-shadow:
        0 0 12px rgba(255, 200, 80, 0.08);

    text-shadow:
        0 0 6px rgba(0,0,0,0.7),
        0 0 10px rgba(0,0,0,0.5);

}

/* 👇 PLACE IT RIGHT HERE */
.blog-scripture span {
    display: block;
    margin-top: 6px;

    font-size: 0.85rem;
    color: #ffd86b;
    font-weight: 500;

    letter-spacing: 0.4px;
}
/* 📖 BLOG POST CONTENT (FINAL CLEAN VERSION) */
.blog-post-content {
    text-align: left;
    max-width: 790px;
    margin: 0 auto 10px;
    color: #ddd;
    line-height: 1.85;
    font-size: 18px;
}

.blog-post-content p {
    margin-bottom: 10px;
}

/* ✨ VISION PAGE */
.vision-page-hero {
    text-align: center;
    margin: 0px auto 14px;
    
}

.vision-kicker {
    margin: 0 0 8px;
}
.vision-page-title {
    font-size: 2.6rem;
    color: #f5d97a;
    margin: 0px 0 10px;
    text-shadow: 0 0 16px rgba(212,175,55,0.18);
}

.vision-page-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #ddd;
    font-size: 1.08rem;
    line-height: 1.8;
}

.vision-page-image {
    width: 100%;
    display: block;
}

.vision-page-scripture-box {
    max-width: 760px;
    margin: 0 auto 6px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(212,175,55,0.18);
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 200, 80, 0.08);
}

.vision-page-scripture {
    margin: 0;
    color: #f5d67a;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

.vision-page-ref {
    display: block;
    margin-top: 8px;
    color: #ffd86b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.vision-page-card {
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 28px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18,18,18,0.96), rgba(28,28,28,0.94));
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow:
        0 0 18px rgba(212,175,55,0.08),
        0 10px 30px rgba(0,0,0,0.35);
    user-select: none;
}

.vision-page-text {
    color: #ddd;
    font-size: 1.04rem;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 16px;
}

.vision-page-text.strong-line {
    color: #f5d67a;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .vision-page-title {
        font-size: 2rem;
    }

    .vision-page-card {
        padding: 22px 18px;
    }

    .vision-page-text,
    .vision-page-subtitle,
    .vision-page-scripture {
        font-size: 0.98rem;
    }
}

/* ✨ VISION IMAGE SOFT GLOW */
.vision-page-image-wrap {
    position: relative;
    max-width: 980px;
    display: inline-block;
    margin: 0px auto 6px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 18px rgba(212,175,55,0.10),
        0 12px 36px rgba(0,0,0,0.45);
    animation: visionFadeIn 1.2s ease, visionSoftGlow 5s ease-in-out infinite;

}
.vision-page-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: radial-gradient(
        circle at center,
        rgba(255, 215, 120, 0.15),
        rgba(0,0,0,0) 60%
    );

    pointer-events: none;
}

/* ✨ VISION SPARKLE POSITIONS */
/* ✨ VISION SPARKLE POSITIONS (FINAL ALIGNMENT) */

.vision-page-image-wrap .sparkle-1 {
    top: 18.2%;
    left: 38.5%;
}

.vision-page-image-wrap .sparkle-2 {
    top: 17.2%;
    left: 43.2%;
}

.vision-page-image-wrap .sparkle-3 {
    top: 17.6%;
    left: 49.8%;
}

.vision-page-image-wrap .sparkle-4 {
    top: 18.0%;
    left: 56.2%;
}

/* ✨ TM SIGNATURE SPARKLE */
.vision-page-image-wrap .sparkle-5 {
    top: 14.8%;
    left: 52.2%;
}
.vision-page-image-wrap .sparkle-1 { animation-delay: 0s; }
.vision-page-image-wrap .sparkle-2 { animation-delay: 0.6s; }
.vision-page-image-wrap .sparkle-3 { animation-delay: 1.2s; }
.vision-page-image-wrap .sparkle-4 { animation-delay: 0.3s; }
.vision-page-image-wrap .sparkle-5 { animation-delay: 1.8s; }

/* ✨ PAGE LOAD FADE-IN */
.vision-page-hero,
.vision-page-scripture-box,
.vision-page-card,
.vision-page-image-wrap {
    animation: visionFadeIn 1.2s ease;
}

@keyframes visionFadeIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes visionSoftGlow {
    0% {
        box-shadow:
            0 0 14px rgba(212,175,55,0.08),
            0 12px 36px rgba(0,0,0,0.42);
    }
    50% {
        box-shadow:
            0 0 24px rgba(212,175,55,0.20),
            0 16px 42px rgba(0,0,0,0.50);
    }
    100% {
        box-shadow:
            0 0 14px rgba(212,175,55,0.08),
            0 12px 36px rgba(0,0,0,0.42);
    }
}

.vision-subtitle {
    color: #d4af37;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.15);
    padding-top: 20px;
}

.strong-line {
    font-weight: bold;
    font-size: 1.15rem;
    text-align: center;
    color: #d4af37;
    margin: 30px 15px;
    text-shadow: 0 0 10px rgba(212,175,55,0.25);
}

.vision-image {
    width: 100%;
    border-radius: 18px;
    margin: 20px 0;
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.scripture {
    text-align: center;
    font-style: italic;
    color: #d4af37;
    margin: 20px 0;
}
/* ✨ GEM SPARKLES */

.gem-sparkle {
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
}

.gem-sparkle::before,
.gem-sparkle::after {
    content: "";
    position: absolute;
    background: white;

    box-shadow:
        0 0 12px white,
        0 0 24px #ffd86b,
        0 0 40px #ffae00;

    border-radius: 2px;
}

.gem-sparkle::before {
    width: 2px;
    height: 12px;
    left: 8px;
    top: 3px;
}

.gem-sparkle::after {
    width: 12px;
    height: 2px;
    left: 3px;
    top: 8px;
}

.sparkle-1 {
    top: 11.3%;
    left: 42.2%;
    animation: twinkle 2.2s ease-in-out infinite;
}

.sparkle-2 {
    top: 10.5%;
    left: 45.6%;
    animation: twinkle 2.8s ease-in-out infinite 0.5s;
}

.sparkle-3 {
    top: 10.7%;
    left: 49.0%;
    animation: twinkle 2.8s ease-in-out infinite 1s;
}

.sparkle-4 {
    top: 10.9%;
    left: 52.6%;
    animation: twinkle 3s ease-in-out infinite 0.3s;
}

.sparkle-5 {
    top: 10.3%;
    left: 47.6%;
    animation: twinkle 2.1s ease-in-out infinite 0.8s;
}

@keyframes twinkle {
    0%, 75%, 100% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
    }
    82% {
        opacity: 1;
        transform: scale(1) rotate(45deg);
    }
    90% {
        opacity: 0.65;
        transform: scale(0.65) rotate(90deg);
    }
}

.article-author {
    text-align: center;
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.content-rights {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 20px;
    opacity: 0.7;
}

.abba-image {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 18px;

    box-shadow:
        0 0 20px rgba(212,175,55,0.15),
        0 15px 40px rgba(0,0,0,0.5);

    animation: abbaGlow 4s ease-in-out infinite alternate;
}

/* 🔥 This is the animation definition */
@keyframes abbaGlow {
    from {
        box-shadow:
            0 0 20px rgba(212,175,55,0.15),
            0 15px 40px rgba(0,0,0,0.5);
    }
    to {
        box-shadow:
            0 0 40px rgba(212,175,55,0.25),
            0 20px 60px rgba(0,0,0,0.6);
    }
}

.abba-callout {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.abba-callout .vision-page-text,
.abba-callout .strong-line {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.vision-page-card {
    padding: 30px 20px;
}
/* ✨ ENTER HIS PRESENCE */

.presence-invite {
    margin-top: 18px;
    text-align: center;
}

.presence-btn {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35),
        0 0 24px rgba(212,175,55,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.presence-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 16px rgba(212,175,55,0.5),
        0 0 32px rgba(212,175,55,0.24);
}

.presence-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: 9999;
}

.presence-overlay.active {
    opacity: 1;
    visibility: visible;
}

.presence-box {
    max-width: 720px;
    width: 100%;
    text-align: center;
    padding: 34px 26px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18,18,18,0.96), rgba(28,28,28,0.94));
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow:
        0 0 24px rgba(212,175,55,0.14),
        0 0 60px rgba(0,0,0,0.45);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.45s ease;
}

.presence-overlay.active .presence-box {
    transform: translateY(0) scale(1);
}

.presence-scripture {
    color: #f5d97a;
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 12px;
    text-shadow:
        0 0 10px rgba(212,175,55,0.12),
        0 0 20px rgba(0,0,0,0.35);
}

.presence-ref {
    display: block;
    color: #ffd86b;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.presence-actions {
    text-align: center;
}

.presence-close {
    background: rgba(212,175,55,0.14);
    color: #f5d97a;
    border: 1px solid rgba(212,175,55,0.35);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.presence-close:hover {
    background: rgba(212,175,55,0.24);
    transform: translateY(-1px);
}

/* ===== HOLY SPIRIT PAGE STYLES ===== */

/* Tab Navigation */
.hs-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px auto 40px;
    max-width: 900px;
}

.hs-tab {
    background: rgba(212,175,55,0.12);
    color: #f5d97a;
    border: 1px solid rgba(212,175,55,0.3);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    outline: none;
}

.hs-tab:hover {
    background: rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.hs-tab.active {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    border-color: #f5d97a;
    box-shadow: 
        0 0 12px rgba(212,175,55,0.4),
        0 0 24px rgba(212,175,55,0.2);
}

/* Tab Content */
.hs-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hs-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Symbols Grid */
.hs-symbols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 24px auto;
    max-width: 900px;
}

.hs-symbol-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-symbol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 0 18px rgba(212,175,55,0.15);
}

.hs-symbol-card h4 {
    color: #f5d97a;
    margin-bottom: 10px;
    font-size: 20px;
}

.hs-symbol-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
}

/* Importance Grid */
.hs-importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px auto;
    max-width: 900px;
}

.hs-importance-card {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-importance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.35);
    box-shadow: 
        0 0 18px rgba(212,175,55,0.12),
        0 8px 24px rgba(0,0,0,0.3);
}

.hs-importance-card h4 {
    color: #f5d97a;
    margin-bottom: 12px;
    font-size: 22px;
}

.hs-importance-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hs-importance-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.hs-importance-card li {
    color: #ccc;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.hs-importance-card li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Steps */
.hs-steps {
    max-width: 800px;
    margin: 30px auto;
}

.hs-step {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.15);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.hs-step:hover {
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 0 16px rgba(212,175,55,0.1);
    transform: translateX(4px);
}

.hs-step-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.hs-step h4 {
    color: #f5d97a;
    margin: 0 0 8px;
    font-size: 20px;
}

.hs-step p {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Purpose List */
.hs-purpose-list {
    max-width: 800px;
    margin: 30px auto;
}

.hs-purpose-item {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    border-left: 4px solid #d4af37;
    border-right: 1px solid rgba(212,175,55,0.15);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-purpose-item:hover {
    border-left-color: #f5d97a;
    border-right-color: rgba(212,175,55,0.3);
    border-top-color: rgba(212,175,55,0.3);
    border-bottom-color: rgba(212,175,55,0.3);
    box-shadow: 0 0 18px rgba(212,175,55,0.12);
    transform: translateX(4px);
}

.hs-purpose-item h4 {
    color: #f5d97a;
    margin-bottom: 10px;
    font-size: 22px;
}

.hs-purpose-item p {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .hs-tabs {
        gap: 8px;
    }
    
    .hs-tab {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .hs-symbols,
    .hs-importance-grid {
        grid-template-columns: 1fr;
    }
    
    .hs-step {
        flex-direction: column;
        gap: 12px;
    }
    
    .hs-step-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

/* ===== HOLY SPIRIT PAGE STYLES ===== */

/* Tab Navigation */
.hs-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px auto 40px;
    max-width: 900px;
}

.hs-tab {
    background: rgba(212,175,55,0.12);
    color: #f5d97a;
    border: 1px solid rgba(212,175,55,0.3);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    outline: none;
}

.hs-tab:hover {
    background: rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.hs-tab.active {
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    border-color: #f5d97a;
    box-shadow: 
        0 0 12px rgba(212,175,55,0.4),
        0 0 24px rgba(212,175,55,0.2);
}

/* Tab Content */
.hs-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hs-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Symbols Grid */
.hs-symbols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 24px auto;
    max-width: 900px;
}

.hs-symbol-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-symbol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 0 18px rgba(212,175,55,0.15);
}

.hs-symbol-card h4 {
    color: #f5d97a;
    margin-bottom: 10px;
    font-size: 20px;
}

.hs-symbol-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
}

/* Importance Grid */
.hs-importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px auto;
    max-width: 900px;
}

.hs-importance-card {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-importance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.35);
    box-shadow: 
        0 0 18px rgba(212,175,55,0.12),
        0 8px 24px rgba(0,0,0,0.3);
}

.hs-importance-card h4 {
    color: #f5d97a;
    margin-bottom: 12px;
    font-size: 22px;
}

.hs-importance-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hs-importance-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.hs-importance-card li {
    color: #ccc;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.hs-importance-card li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Steps */
.hs-steps {
    max-width: 800px;
    margin: 30px auto;
}

.hs-step {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.15);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.hs-step:hover {
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 0 16px rgba(212,175,55,0.1);
    transform: translateX(4px);
}

.hs-step-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #d4af37, #f5d97a);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.hs-step h4 {
    color: #f5d97a;
    margin: 0 0 8px;
    font-size: 20px;
}

.hs-step p {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Purpose List */
.hs-purpose-list {
    max-width: 800px;
    margin: 30px auto;
}

.hs-purpose-item {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    border-left: 4px solid #d4af37;
    border-right: 1px solid rgba(212,175,55,0.15);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.hs-purpose-item:hover {
    border-left-color: #f5d97a;
    border-right-color: rgba(212,175,55,0.3);
    border-top-color: rgba(212,175,55,0.3);
    border-bottom-color: rgba(212,175,55,0.3);
    box-shadow: 0 0 18px rgba(212,175,55,0.12);
    transform: translateX(4px);
}

.hs-purpose-item h4 {
    color: #f5d97a;
    margin-bottom: 10px;
    font-size: 22px;
}

.hs-purpose-item p {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .hs-tabs {
        gap: 8px;
    }
    
    .hs-tab {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .hs-symbols,
    .hs-importance-grid {
        grid-template-columns: 1fr;
    }
    
    .hs-step {
        flex-direction: column;
        gap: 12px;
    }
    
    .hs-step-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}
/* 🔥 CONNECT WITH US LINKS */

.connect-links a {
    color: #d4af37 !important;
    text-decoration: none;
    font-weight: 600;

    margin: 0 10px;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;

    display: inline-block;
}

.connect-links a:hover {
    color: #f5d97a !important;

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.35);

    transform: translateY(-2px);
}
