/* ============================================================
   TheElleven.org V2 — Main Stylesheet
   A spiritual framework for the modern age.
   ============================================================ */

/* ===== RESET & ROOT VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --primary-light: #FF8C61;
    --primary-dark: #E85A2A;
    --secondary: #004E89;
    --secondary-light: #1A759F;
    --secondary-dark: #003D6B;
    --accent: #34A853;
    --accent-warm: #FFB347;
    --text: #2D3142;
    --text-light: #4F5D75;
    --bg: #FFFFFF;
    --bg-alt: #F8F9FB;
    --light-bg: #EFF1F3;
    --border: #D8DEE9;
    --shadow: rgba(0, 78, 137, 0.08);
    --shadow-hover: rgba(0, 78, 137, 0.15);
}

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 40%, #0d2137 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(52, 168, 83, 0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-alt), transparent);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.symbol {
    font-size: 7rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.8rem;
    position: relative;
    z-index: 1;
    animation: symbolGlow 3s ease-in-out infinite;
}

@keyframes symbolGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6)); transform: scale(1.05); }
}

.brand {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 850px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-cta {
    position: relative;
    z-index: 2;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero .cta-button.secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.hero .cta-button.secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-warm));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }
}

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-warm));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px var(--shadow-hover);
    border-top-color: var(--accent-warm);
}

.card h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

/* Card grid stagger */
.grid .card {
    will-change: transform;
}

/* ===== BACKGROUND VARIANTS ===== */
.bg-light {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--light-bg) 100%);
}

.bg-dark {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(52, 168, 83, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bg-dark h2,
.bg-dark h3 {
    color: white;
    position: relative;
    z-index: 1;
}

.bg-dark p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* ===== QUOTE LARGE ===== */
.quote-large {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    max-width: 1000px;
    margin: 3rem auto;
    line-height: 1.6;
    color: var(--secondary-dark);
    position: relative;
    padding: 2rem;
}

.quote-large::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: 0;
    font-family: Georgia, serif;
}

.quote-large strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 3rem 0;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.highlight-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-box p {
    color: white;
    position: relative;
    z-index: 1;
}

/* ===== CHECK LIST ===== */
ul.check-list {
    list-style: none;
    padding-left: 0;
}

ul.check-list li {
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text);
}

ul.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    background: rgba(52, 168, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

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

.comparison-table tbody tr:hover {
    background: var(--bg-alt);
    transition: background 0.2s ease;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

/* ===== RELIGION ICON ===== */
.religion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* ===== PRINCIPLES LIST ===== */
.principles-list {
    list-style: none;
    max-width: 950px;
    margin: 0 auto;
}

.principles-list li {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    border-left: 6px solid var(--primary);
    transition: all 0.3s ease;
}

.principles-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px var(--shadow-hover);
    border-left-color: var(--accent);
}

.principle-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.principle-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.principle-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.principle-sanskrit {
    color: var(--primary);
    font-style: italic;
    margin-right: 0.7rem;
    font-weight: 600;
}

/* ===== EMAIL INPUT (original) ===== */
input[type="email"] {
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #001F3F 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    color: var(--accent-warm);
}

@media (max-width: 600px) {
    .footer > .container > div:first-child {
        text-align: center;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer a {
    color: var(--accent-warm);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-warm));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav.scrolled .nav-logo {
    color: var(--secondary-dark);
}

.nav-logo-symbol {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

.nav-links a.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--text);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}


/* ============================================================
   NEW STYLES FOR MULTI-PAGE SITE
   ============================================================ */

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 40%, #0d2137 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--accent-warm);
}

.page-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.page-header .breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RELIGION PAGE STYLES ===== */
.religion-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 40%, #0d2137 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.religion-hero .religion-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.religion-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.religion-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.religion-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
}

.stat-box .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 0.3rem;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.gap-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    border-left: 5px solid var(--accent-warm);
    position: relative;
    transition: all 0.3s ease;
}

.gap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.gap-card .gap-number {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-warm), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(255, 179, 71, 0.4);
}

.gap-card h3 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.religion-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.religion-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-alt);
    transition: all 0.3s ease;
}

.religion-nav a:hover,
.religion-nav a.active {
    color: white;
    background: var(--primary);
}

.religion-quote {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    padding: 2rem 2.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    position: relative;
}

.religion-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -0.5rem;
    left: 0.8rem;
    font-family: Georgia, serif;
}

.religion-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.bridge-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.bridge-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bridge-section h2,
.bridge-section h3 {
    color: white;
    position: relative;
    z-index: 1;
}

.bridge-section p {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

/* ===== BLOG STYLES ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-top: 4px solid var(--primary);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.blog-card .category-badge {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.blog-card h3,
.blog-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--secondary-dark);
}

.blog-card h3 a,
.blog-card h4 a {
    color: var(--secondary-dark);
    transition: color 0.3s ease;
}

.blog-card h3 a:hover,
.blog-card h4 a:hover {
    color: var(--primary);
}

.blog-card .blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.blog-card .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.blog-card .blog-card-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card .blog-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.blog-card .blog-card-link:hover {
    color: var(--primary-dark);
}

.blog-card .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.blog-card .read-more:hover {
    gap: 0.7rem;
}

.blog-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-single h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.blog-single h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-single h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.blog-single p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.blog-single img {
    max-width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

.blog-single blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--bg-alt);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text);
}

.blog-single ul,
.blog-single ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    line-height: 1.9;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.category-badge.spirituality,
.category-badge.category-principles {
    background: rgba(52, 168, 83, 0.1);
    color: var(--accent);
}

.category-badge.technology,
.category-badge.category-surveillance {
    background: rgba(0, 78, 137, 0.1);
    color: var(--secondary);
}

.category-badge.community,
.category-badge.category-community {
    background: rgba(255, 179, 71, 0.15);
    color: #c97a00;
}

.category-badge.category-religions {
    background: rgba(156, 39, 176, 0.1);
    color: #7B1FA2;
}

.category-badge.category-agi {
    background: rgba(233, 30, 99, 0.1);
    color: #C2185B;
}

.category-badge.category-practice {
    background: rgba(0, 150, 136, 0.1);
    color: #00897B;
}

/* ===== COMMUNITY PAGE ===== */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.group-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.group-card .group-city {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.group-card .group-info {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.group-card .group-members {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3.5rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    color: var(--text);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: var(--primary-dark);
}

/* ===== PRACTICE PAGE ===== */
.challenge-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.challenge-step:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 25px var(--shadow-hover);
}

.challenge-step .step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.challenge-step .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.challenge-step .step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.practice-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.practice-card .practice-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.practice-card .practice-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent-warm));
    color: white;
    border-radius: 50%;
    line-height: 48px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.timer-display .timer-segment {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.2);
}

.timer-display .timer-segment .timer-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.timer-display .timer-segment .timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.timer-display .timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.reflection-card {
    background: linear-gradient(135deg, var(--bg-alt), white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    position: relative;
}

.reflection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 0 0 4px;
}

.reflection-card .reflection-day {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reflection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ===== ABOUT PAGE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 25px var(--shadow-hover);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 2rem;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item .timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-grid .team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.team-grid .team-member:hover {
    transform: translateY(-6px);
}

.team-grid .team-member .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bg-alt), var(--light-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
}

.team-grid .team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-grid .team-member .role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid var(--accent);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ===== FORM STYLES ===== */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: inherit;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.form-button:active {
    transform: translateY(0);
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(52, 168, 83, 0.1);
    color: var(--accent);
    border: 1px solid rgba(52, 168, 83, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 4rem; padding-bottom: 4rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--primary);
    color: white;
    vertical-align: middle;
}

.badge.badge-accent {
    background: var(--accent);
}

.badge.badge-secondary {
    background: var(--secondary);
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-alt);
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    cursor: default;
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.pagination a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-weight: 700;
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ===== ALERTS / NOTIFICATIONS ===== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(52, 168, 83, 0.1);
    color: #1a7a34;
    border-color: rgba(52, 168, 83, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #b92d3a;
    border-color: rgba(220, 53, 69, 0.2);
}

.alert-info {
    background: rgba(0, 78, 137, 0.08);
    color: var(--secondary);
    border-color: rgba(0, 78, 137, 0.15);
}

.alert-warning {
    background: rgba(255, 179, 71, 0.15);
    color: #a16300;
    border-color: rgba(255, 179, 71, 0.3);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }

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

    .nav-links a {
        color: var(--text) !important;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .brand { font-size: 3rem; }
    .symbol { font-size: 5rem; }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-large {
        font-size: 1.4rem;
        padding: 1rem;
    }

    section {
        padding: 4rem 0;
    }

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

    .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 42px;
        height: 42px;
    }

    /* Inner page header mobile */
    .page-header {
        padding: 6rem 0 3rem;
    }

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

    /* Blog mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-single h1 {
        font-size: 2rem;
    }

    /* Community mobile */
    .group-grid {
        grid-template-columns: 1fr;
    }

    /* Practice mobile */
    .challenge-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .timer-display .timer-segment {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }

    .timer-display .timer-segment .timer-value {
        font-size: 1.8rem;
    }

    /* About mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Bridge section mobile */
    .bridge-section {
        padding: 2.5rem 2rem;
    }

    /* Religion stats mobile */
    .religion-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact form mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .religion-stats {
        grid-template-columns: 1fr;
    }

    .religion-nav {
        justify-content: center;
    }

    .timer-display {
        flex-wrap: wrap;
    }

    .pagination {
        gap: 0.25rem;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */

@media (prefers-color-scheme: dark) {
    :root {
        --text: #E0E4EA;
        --text-light: #A0AABB;
        --bg: #0F1724;
        --bg-alt: #151F30;
        --light-bg: #1A2840;
        --border: #2A3A52;
        --shadow: rgba(0, 0, 0, 0.3);
        --shadow-hover: rgba(0, 0, 0, 0.45);
    }

    body {
        background: var(--bg);
    }

    .card,
    .blog-card,
    .group-card,
    .practice-card,
    .value-card,
    .challenge-step,
    .timeline-item,
    .reflection-card,
    .stat-box,
    .gap-card,
    .contact-form,
    .comparison-table,
    .principles-list li,
    .team-grid .team-member {
        background: var(--bg-alt);
    }

    .nav.scrolled {
        background: rgba(15, 23, 36, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav.scrolled .nav-logo {
        color: white;
    }

    .nav.scrolled .nav-links a {
        color: rgba(255, 255, 255, 0.8);
    }

    .nav.scrolled .nav-links a:hover,
    .nav.scrolled .nav-links a.active {
        color: var(--primary);
    }

    .nav.scrolled .nav-toggle span {
        background: white;
    }

    .nav-links {
        background: rgba(15, 23, 36, 0.97) !important;
    }

    /* Headings in dark mode */
    h1, h2, h3, h4 {
        color: #E8ECF2;
    }

    .section-title {
        color: #E8ECF2;
    }

    /* Inline white boxes need dark bg */
    [style*="background: white"],
    [style*="background:white"] {
        background: var(--bg-alt) !important;
        color: var(--text);
    }

    /* Cards text */
    .card h3, .card h4 {
        color: #E0E4EA;
    }

    .card p, .card li {
        color: var(--text-light);
    }

    /* Blog cards */
    .blog-card h3 a,
    .blog-card h4 a {
        color: #E0E4EA;
    }

    .blog-card h3 a:hover,
    .blog-card h4 a:hover {
        color: var(--primary);
    }

    .blog-card .blog-card-footer {
        border-top-color: var(--border);
    }

    .blog-card .blog-card-date {
        color: var(--text-light);
    }

    /* Comparison table */
    .comparison-table {
        background: var(--bg-alt);
    }

    .comparison-table th {
        background: linear-gradient(135deg, #0a1628 0%, var(--secondary-dark) 100%);
    }

    .comparison-table td {
        border-bottom-color: var(--border);
        color: var(--text);
    }

    .comparison-table tbody tr:hover {
        background: var(--light-bg);
    }

    /* Highlight boxes stay as-is (they have explicit colors) */

    /* Check list */
    ul.check-list li {
        color: var(--text);
    }

    /* Principles list */
    .principles-list li {
        border-left-color: var(--primary);
    }

    .principle-name {
        color: #E0E4EA;
    }

    /* Forms */
    .form-input,
    .form-textarea,
    .search-bar input {
        background: var(--bg);
        color: var(--text);
        border-color: var(--border);
    }

    input[type="email"] {
        background: var(--bg-alt);
        color: var(--text);
        border-color: var(--border);
    }

    /* Quote */
    .quote-large {
        color: #D0D8E4;
    }

    .blog-single blockquote,
    .religion-quote {
        background: var(--light-bg);
    }

    .tag {
        background: var(--light-bg);
        border-color: var(--border);
        color: var(--text-light);
    }

    .pagination a,
    .pagination span {
        background: var(--bg-alt);
        border-color: var(--border);
        color: var(--text-light);
    }

    .blog-card .blog-card-image {
        background: linear-gradient(135deg, var(--bg-alt), var(--light-bg));
    }

    /* Footer in dark mode */
    .footer {
        background: linear-gradient(135deg, #060d18 0%, #0a1628 100%);
    }

    /* Section backgrounds */
    .bg-light {
        background: var(--bg-alt);
    }

    .quote-large {
        color: var(--text);
    }

    h1, h2, h3, h4 {
        color: #E8ECF2;
    }

    .section-title {
        color: #E8ECF2;
    }

    ul.check-list li {
        color: var(--text);
    }
}
