/* Root Variables */
:root {
    /* Dark Mode (Temple/Night) - Refined Sacred Palette */
    --primary-color: #8B2635; /* Deep Temple Maroon - softened for elegance */
    --primary-dark: #4A0E17; /* Darkest Wine - rich depth */
    --primary-light: #A23D4A; /* Muted Rose - not too bright */
    --secondary-color: #C9A962; /* Antique Gold - warmer, more temple-like */
    --accent-color: #E8C468; /* Soft Temple Gold - less harsh than pure gold */
    --accent-bright: #F4E4C1; /* Candlelight Glow - warm luminescence */
    
    /* Background - Rich Temple Layers */
    --dark-bg: #0D0506; /* Deep Sacred Void - softer black */
    --light-bg: #1F0B11; /* Temple Shadow - balanced darkness */
    --card-bg: #180A0F; /* Burgundy Sanctuary */
    --card-bg-gradient: linear-gradient(135deg, #180A0F 0%, #241015 50%, #1F0B11 100%);
    
    /* Text Colors */
    --text-dark: #F0DCC8; /* Warm Parchment Cream */
    --text-light: #FFF8F0; /* Soft White - easier on eyes */
    --text-gold: #E8C468;
    
    /* Borders & Effects */
    --border-color: rgba(139, 38, 53, 0.5);
    --border-gold: rgba(232, 196, 104, 0.4);
    --shadow: rgba(0, 0, 0, 0.85);
    --shadow-colored: rgba(74, 14, 23, 0.7);
    --overlay-color: rgba(24, 10, 15, 0.96);
    
    /* Gradient Masterpieces - More Sophisticated */
    --gold-gradient: linear-gradient(135deg, #B8935A 0%, #C9A962 25%, #E8C468 50%, #F4E4C1 60%, #E8C468 75%, #C9A962 90%, #B8935A 100%);
    --maroon-gradient: linear-gradient(135deg, #4A0E17 0%, #6B1825 25%, #8B2635 50%, #A23D4A 75%, #8B2635 100%);
    --temple-gradient: radial-gradient(ellipse at top, #2D0F18 0%, #1F0B11 45%, #0D0506 100%);
}


/* Font Face Declarations
   - Fonts are loaded via the Google Fonts stylesheet (prefer display=swap or preload rel=preload in index.html).
   - If you self-host fonts, add font-display: swap to @font-face to avoid FOIT and layout shifts.
   - Example for self-hosting (paste into your stylesheet or build pipeline as needed):
   
   @font-face {
     font-family: 'Philosopher';
     font-style: normal;
     font-weight: 400 700;
     font-display: swap;
     src: url('/fonts/philosopher-regular.woff2') format('woff2');
   }
   
   Use rel="preload" in HTML as:
   <link rel="preload" href="https://fonts.gstatic.com/..." as="font" type="font/woff2" crossorigin>
   
   Keeping a single Font Awesome override below to enforce font-display for CDN-served FA files. */

/* Override Font Awesome @font-face to ensure font-display is set (reduces FCP blocking) */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility helpers */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

html {
    height: auto;
    min-height: 100vh;
}

body {
    /* Add robust fallback stack and slightly tighter line-height to reduce layout shifts when webfonts load */
    font-family: 'Crimson Text', Georgia, 'Times New Roman', Times, serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--light-bg);
    /* Subtle temple floor texture */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    flex: 1;
    width: 100%;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, rgba(13, 5, 6, 0.96) 0%, rgba(31, 11, 17, 0.96) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px var(--shadow-colored), 0 0 20px rgba(232, 196, 104, 0.08);
    border-bottom: 1px solid var(--border-gold);
    min-height: 80px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    /* Add fallback stack for headline font to avoid layout jumps while Philosopher loads */
    font-family: 'Philosopher', 'Trebuchet MS', Arial, sans-serif;
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    min-height: 1.6rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a.active {
    color: var(--accent-color);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(232, 196, 104, 0.5);
    animation: slideIn 0.3s ease-out;
}

/* Language Toggle Styles */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(232, 196, 104, 0.3);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Philosopher', 'Trebuchet MS', Arial, sans-serif;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 70px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* CRITICAL: Prevent CLS from active state changes */
    line-height: 1.2;
}

.lang-btn:hover {
    border-color: var(--accent-color);
    background: rgba(232, 196, 104, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 196, 104, 0.2);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border-color: var(--accent-bright);
    box-shadow: 0 4px 15px rgba(232, 196, 104, 0.4);
    font-weight: 800;
}

.lang-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Header scroll effect */
.header.scrolled {
    box-shadow: 0 6px 35px var(--shadow-colored), 0 0 30px rgba(232, 196, 104, 0.12);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 8rem 0;
    text-align: center;
    overflow: visible;
    color: var(--text-light);
    contain: layout;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    /* Reserve space to prevent layout shift from particles and animations */
    min-height: 300px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Text Styles */
.hero-title {
    /* Tighter line-height and fallback font stack to reduce CLS from font swaps */
    font-family: 'Philosopher', 'Trebuchet MS', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 0.5px;
    will-change: auto; /* Remove will-change */
    /* CRITICAL: Prevent font metric changes during swap */
    min-height: 11rem;
    /* Ensure consistent height even with different fonts */
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    letter-spacing: 0.3px;
    /* Reserve space to prevent shift when font loads */
    min-height: 4.8rem;
    display: block;
}

.hero-author {
    font-size: 1.2rem;
    color: var(--accent-bright);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    /* Reserve space to prevent shift when font loads */
    min-height: 1.8rem;
    display: block;
}

.hero-blessing {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.om-symbol {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
    background: var(--temple-gradient);
    will-change: auto;
    transition: none;
    transform: translateZ(0);
    pointer-events: none;
    contain: strict;
}

/* Parallax layer for enhanced depth - REMOVED to prevent layout shift */
/* Previous ::before pseudo-element caused repaints during font load */

/* Parallax Overlays - Stars/Sparkles - Enhanced for Depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background-image: 
        radial-gradient(circle at 25% 40%, rgba(232, 196, 104, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 75% 60%, rgba(232, 196, 104, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 80%, rgba(232, 196, 104, 0.25) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px, 100px 100px;
    background-position: 0 0, 40px 40px, 20px 20px;
    opacity: 0.15;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.2; }
}

/* Particle/Sparkle Animation Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
    contain: strict;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
    /* Prevent particle repaints from affecting layout */
    will-change: transform, opacity;
    box-shadow: 0 0 6px rgba(232, 196, 104, 0.8);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-20px) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-200px) translateX(50px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-220px) translateX(60px) scale(0);
    }
}

/* Drop Cap / Sacred Typography - Removed (was too large and distracting) */

/* Gold Leaf Texture for Buttons and Borders - Refined Elegance */
.btn-primary {
    /* Luxurious Temple Gold with subtle metallic shimmer */
    background: var(--gold-gradient);
    color: #2D0F18; /* Deep rich text for better contrast */
    background-size: 200% 200%;
    border: 1.5px solid var(--border-gold);
    font-weight: 700;
    box-shadow: 
        0 5px 18px rgba(184, 147, 90, 0.35),
        0 0 15px rgba(232, 196, 104, 0.15),
        inset 0 1px 10px rgba(255, 248, 230, 0.4), /* Soft inner shine */
        inset 0 -1px 8px rgba(61, 40, 23, 0.15); /* Subtle depth */
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.015);
    box-shadow: 
        0 10px 30px rgba(184, 147, 90, 0.5),
        0 0 25px rgba(232, 196, 104, 0.3), /* Warm gold glow */
        inset 0 2px 15px rgba(255, 248, 230, 0.5);
}

/* Ripple effect for buttons */
.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after,
.btn-secondary:active::after {
    width: 300px;
    height: 300px;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Divine Images with Gold Leaf Border */
.divine-presence {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 769px) {
    /* Removed horizontal layout for divine-presence to keep vertical stack */
    
    .divine-caption {
        width: 100%;
    }
}

.divine-image {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border: 5px solid transparent; 
    background: var(--gold-gradient) border-box;
    box-shadow: 
        0 0 35px rgba(232, 196, 104, 0.4),
        0 0 70px rgba(184, 147, 90, 0.25),
        inset 0 0 30px rgba(13, 5, 6, 0.4);
    margin: 0 auto;
    flex-shrink: 0;
}

.divine-image.mother {
    width: 320px;
    height: 320px;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border: none;
    background: var(--gold-gradient);
    padding: 4px;
    box-shadow: none;
    filter: drop-shadow(0 0 25px rgba(232, 196, 104, 0.5));
}

.divine-image.mother img {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    object-position: center 20%; /* Adjust to show the face better in triangle */
}

.divine-image:hover {
    transform: scale(1.08);
    box-shadow: 
        0 0 50px rgba(232, 196, 104, 0.6),
        0 0 100px rgba(184, 147, 90, 0.4),
        inset 0 0 30px rgba(13, 5, 6, 0.3);
    animation: divineGlow 2s infinite ease-in-out;
}

@keyframes divineGlowIdle {
    0%, 100% {
        box-shadow: 
            0 0 35px rgba(232, 196, 104, 0.4),
            0 0 70px rgba(184, 147, 90, 0.25),
            inset 0 0 30px rgba(13, 5, 6, 0.4);
    }
    50% {
        box-shadow: 
            0 0 45px rgba(232, 196, 104, 0.5),
            0 0 85px rgba(184, 147, 90, 0.35),
            inset 0 0 30px rgba(13, 5, 6, 0.35);
    }
}

@keyframes divineGlow {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(232, 196, 104, 0.6),
            0 0 100px rgba(184, 147, 90, 0.4),
            inset 0 0 30px rgba(13, 5, 6, 0.3);
    }
    50% {
        box-shadow: 
            0 0 70px rgba(232, 196, 104, 0.8),
            0 0 130px rgba(184, 147, 90, 0.6),
            inset 0 0 30px rgba(13, 5, 6, 0.2);
    }
}

.divine-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.divine-connector {
    height: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    flex-shrink: 0;
    align-self: center;
    margin: 0 auto;
}

.divine-caption {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-size: 1.1rem;
    width: 100%;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.divine-labels {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: float 3s infinite ease-in-out;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.scroll-indicator i {
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
    50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* Mobile-first spacing: smaller devices get the baseline spacing, larger
   screens increase padding using min-width media queries to avoid layout shifts. */
.hero { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 6rem); }

@media (min-width: 481px) {
    .hero { padding-bottom: 9rem; }
}

@media (min-width: 769px) {
    .hero { padding-bottom: 10rem; }
}

/* Note: `.scroll-indicator` has been removed from the markup to avoid overlap on small screens */

/* Shape Dividers */
.custom-shape-divider-bottom-1685027373 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1685027373 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

.custom-shape-divider-bottom-1685027373 .shape-fill {
    fill: var(--light-bg);
}

/* For the library section divider (inverted color) */
#library .custom-shape-divider-bottom-1685027373 .shape-fill {
    fill: #000000; /* Matches About section background start */
}

/* Section Titles */
.section-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(232, 196, 104, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

/* Navigation Controls (Search & Toggle) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* CRITICAL: Prevent CLS from dynamic content */
    min-width: 200px;
    justify-content: flex-end;
}

#audio-toggle {
    background: none;
    border: 2px solid transparent;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Reserve space to prevent layout shift */
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

#audio-toggle:hover {
    transform: scale(1.15);
    border-color: var(--accent-color);
    background: rgba(232, 196, 104, 0.1);
}

#audio-toggle.playing {
    color: var(--accent-bright);
    background: rgba(232, 196, 104, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(232, 196, 104, 0.4), inset 0 0 10px rgba(232, 196, 104, 0.1);
}

#audio-toggle.playing:hover {
    box-shadow: 0 0 30px rgba(232, 196, 104, 0.6), inset 0 0 15px rgba(232, 196, 104, 0.2);
}

@keyframes audioGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(232, 196, 104, 0.3), inset 0 0 8px rgba(232, 196, 104, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(232, 196, 104, 0.6), inset 0 0 15px rgba(232, 196, 104, 0.2);
    }
}

/* Library Controls */
/* Removed search styles as search is currently disabled */

/* 3D Book Cards */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    perspective: 2000px; /* Essential for 3D effect */
    padding: 20px;
}

.book-card {
    background: var(--card-bg-gradient);
    border-radius: 2px 12px 12px 2px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.3s ease;
    box-shadow: 
        8px 8px 25px var(--shadow),
        0 0 12px var(--shadow-colored),
        inset 18px 0 45px rgba(0,0,0,0.35); /* Refined spine shadow */
    border: 1.5px solid var(--border-color);
    border-left: 14px solid transparent;
    border-image: var(--maroon-gradient) 1;
    border-image-slice: 1;
    border-left-width: 14px;
    /* Initial slight tilt */
    transform: rotateY(-5deg);
    overflow: hidden;
}

/* Loading shimmer effect */
.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232, 196, 104, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
}

.book-card:hover::before {
    left: 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.book-card:hover {
    transform: translateY(-12px) rotateY(0deg) scale(1.025);
    box-shadow: 
        20px 20px 45px var(--shadow),
        0 0 35px rgba(184, 147, 90, 0.3),
        0 0 60px rgba(232, 196, 104, 0.2),
        inset 10px 0 30px rgba(0,0,0,0.2);
    border-left: 14px solid transparent;
    border-image: var(--gold-gradient) 1;
    z-index: 10;
    animation: cardGlow 2s infinite ease-in-out;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 
            20px 20px 45px var(--shadow),
            0 0 35px rgba(184, 147, 90, 0.3),
            0 0 60px rgba(232, 196, 104, 0.2),
            inset 10px 0 30px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 
            20px 20px 45px var(--shadow),
            0 0 50px rgba(184, 147, 90, 0.5),
            0 0 80px rgba(232, 196, 104, 0.4),
            inset 10px 0 30px rgba(0,0,0,0.15);
    }
}

/* Pages Thickness Effect */
.book-card::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: -10px; /* Push out to right */
    width: 10px;
    background: linear-gradient(to right, #ddd, #fff 50%, #ddd);
    transform: skewY(45deg); /* Simple perspective trick */
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    z-index: -1;
    transition: all 0.4s ease;
}

.book-card:hover::after {
    transform: translateX(-5px) skewY(0);
    opacity: 0; /* Hide thickness when facing front */
}

.book-content {
    position: relative;
}

.book-content::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    right: 2%;
    bottom: 2%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    border-radius: 2px 10px 10px 2px;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: opacity 0.3s ease;
}

.book-card:hover .book-content::after {
    opacity: 0.4;
    animation: borderPulse 2s infinite ease-in-out;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.4;
        box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
    }
    50% {
        opacity: 0.6;
        box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.2);
    }
}

/* Book Content Updates */
.book-content {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.book-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

/* Ensure Devanagari (Hindi) text renders at readable size
   Some Devanagari fonts have smaller visual metrics than Latin;
   increase size slightly and set an acceptable fallback stack. */
.book-card :lang(hi),
.book-card .book-description:lang(hi) {
    font-size: 1.18rem;
    line-height: 1.85;
    /* Prefer a Devanagari-capable UI font where available */
    font-family: 'Noto Sans Devanagari', 'Noto Serif Devanagari', 'Mangal', 'Nirmala UI', serif;
}

.book-card .book-title:lang(hi) {
    font-size: 1.8rem; /* match Latin title size */
}

/* Scroll Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Removed duplicate book styles */

.book-meta {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(139, 38, 53, 0.12) 0%, rgba(184, 147, 90, 0.04) 100%);
    border-radius: 8px;
    border-left: 4px solid transparent;
    border-image: var(--gold-gradient) 1;
    box-shadow: inset 0 0 12px rgba(232, 196, 104, 0.08);
}

.book-meta p {
    margin: 0.5rem 0;
}

.free-badge {
    display: inline-block;
    background: var(--maroon-gradient);
    color: var(--accent-bright);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    box-shadow: 
        0 3px 12px var(--shadow-colored),
        inset 0 1px 3px rgba(244, 228, 193, 0.15);
    border: 1px solid var(--border-gold);
}

.book-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 1.1rem;
}

/* .btn-primary is now defined above with Gold Leaf animation */

.btn-secondary {
    background: linear-gradient(135deg, rgba(24, 10, 15, 0.25) 0%, rgba(31, 11, 17, 0.1) 100%);
    color: var(--accent-color);
    border: 1.5px solid var(--border-gold);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.15),
        inset 0 0 8px rgba(232, 196, 104, 0.04);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--maroon-gradient);
    color: var(--accent-bright);
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 
        0 5px 22px var(--shadow-colored),
        0 0 18px rgba(232, 196, 104, 0.25),
        inset 0 0 12px rgba(244, 228, 193, 0.08);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--dark-bg);
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.about-content {
    max-width: 900px;
    margin: 3rem auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-bright);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.dedication, .contact {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(24, 10, 15, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(232, 196, 104, 0.03);
}

.dedication h3, .contact h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dedication ul {
    list-style: none;
    padding-left: 1rem;
}

.dedication li {
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-dark);
}

.dedication li::before {
    content: '✦';
    position: absolute;
    left: -1rem;
    color: var(--accent-color);
}

.dedication p, .contact p {
    color: var(--text-dark);
}

.about-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.about-text a:hover {
    border-bottom-color: var(--accent-color);
    color: var(--accent-bright);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--temple-gradient);
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.7;
    padding: 1.25rem;
    background: rgba(232, 196, 104, 0.1);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-highlight {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 1.5rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.faq-highlight h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-highlight p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-section {
    margin: 1.75rem 0;
}

.faq-section h3, .faq-section h4 {
    color: var(--accent-color);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    border-bottom: 2px solid rgba(232, 196, 104, 0.3);
    padding-bottom: 0.5rem;
}

.faq-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-section ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(232, 196, 104, 0.15);
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-section ul li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 6px;
    padding-left: 2.5rem;
}

.faq-section ul li:last-child {
    border-bottom: none;
}

.faq-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-section ul li:hover::before {
    transform: scale(1.3) rotate(15deg);
}

.quality-list li {
    padding: 1.25rem 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.quality-list li strong {
    color: var(--accent-bright);
    font-weight: 700;
}

.name-meaning {
    background: rgba(24, 10, 15, 0.7);
    padding: 1.75rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.name-meaning p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.name-meaning p:last-child {
    margin-bottom: 0;
}

.faq-outro {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-outro p {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Grid Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.benefit-item {
    background: rgba(24, 10, 15, 0.7);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(232, 196, 104, 0.2);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
}

.benefit-item h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Benefits List Layout */
.benefits-list {
    margin: 2rem 0;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding: 1.5rem;
    background: rgba(24, 10, 15, 0.5);
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.benefit-point:hover {
    background: rgba(24, 10, 15, 0.7);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.point-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
    transition: transform 0.4s ease;
}

.benefit-point:hover .point-icon {
    transform: scale(1.3) rotate(10deg);
}

.benefit-point p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.benefit-point p strong {
    color: var(--accent-bright);
    font-weight: 700;
}

/* Chanting Guide Layout */
.chanting-guide {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.guide-section {
    background: rgba(24, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(232, 196, 104, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.guide-section h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-bottom: 2px solid rgba(232, 196, 104, 0.3);
    padding-bottom: 0.75rem;
}

.guide-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-section ul li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.guide-section ul li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 6px;
    padding-left: 2.5rem;
}

.guide-section ul li:last-child {
    border-bottom: none;
}

.guide-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.guide-section ul li:hover::before {
    transform: translateX(5px);
}

/* Responsive Design for Enhanced FAQ */
@media (max-width: 768px) {
    .nav-controls {
        gap: 1rem;
    }
    
    .lang-toggle {
        gap: 0.35rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
        min-width: 45px;
        min-height: 44px;
    }
    
    .faq-grid {
        max-width: 100%;
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .faq-highlight,
    .guide-section,
    .name-meaning {
        padding: 1rem;
    }

    .benefit-point {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .point-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lang-toggle {
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.9rem;
        min-width: 42px;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-intro,
    .faq-highlight,
    .guide-section,
    .name-meaning {
        padding: 0.75rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-icon {
        font-size: 1.75rem;
    }

    .faq-section h4,
    .guide-section h4 {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0D0506 0%, #1F0B11 50%, #0D0506 100%);
    color: var(--text-light);
    padding: 2.5rem 0 3rem 0;
    text-align: center;
    box-shadow: 0 -4px 25px var(--shadow-colored);
    border-top: 1.5px solid var(--border-gold);
    min-height: auto;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-blessing {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 1;
    color: var(--text-light);
    word-wrap: break-word;
}

.footer-description {
    font-size: 1.05rem;
    opacity: 1;
    margin-bottom: 0.75rem;
    font-style: italic;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-meta {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 1rem;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-version,
.footer-updated {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0.3rem 0;
    color: var(--text-dark);
    word-wrap: break-word;
}

.footer-version span,
.footer-updated span {
    font-weight: 600;
    color: var(--accent-color);
}


/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .books-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
    }

    .divine-image {
        width: 180px;
        height: 180px;
    }

    .divine-image.mother {
        width: 280px;
        height: 280px;
    }
}

/* Mobile & Tablet Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 0.75rem 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .logo h1 {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .nav-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 2;
        min-height: 44px;
        /* CRITICAL: Prevent CLS from dynamic resizing */
        min-width: 120px;
    }

    .nav-menu {
        display: flex;
        order: 3;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding-top: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 3rem 0 5rem 0;
    }

    .hero-bg {
        height: 100%;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 1rem;
        /* CRITICAL: Maintain space for content to prevent CLS */
        min-height: 250px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        word-break: break-word;
        /* Reserve height for font swaps */
        min-height: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
        /* Reserve height for font swaps */
        min-height: 1.92rem;
    }

    .hero-author {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        /* Reserve height for font swaps */
        min-height: 1.5rem;
    }

    .hero-blessing {
        font-size: 1rem;
        margin: 1.5rem 0;
    }

    .om-symbol {
        font-size: 2rem;
    }

    /* Divine Images */
    .divine-image {
        width: 150px;
        height: 150px;
    }

    .divine-image.mother {
        width: 240px;
        height: 240px;
    }

    .divine-caption {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .divine-labels {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Books Grid */
    .books-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 10px;
    }

    .book-card {
        transform: none;
    }

    .book-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .book-content {
        padding: 1.75rem 1.5rem;
    }

    .book-title {
        font-size: 1.6rem;
    }

    .book-description {
        font-size: 1rem;
    }

    .book-links {
        flex-direction: column;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
        min-height: 44px; /* Better touch target for mobile */
        min-width: 44px;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        margin: 2rem auto;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .dedication, .contact {
        padding: 1.5rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        min-width: 40px;
    }

    #audio-toggle {
        font-size: 1.2rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero Section Small Mobile */
    .hero {
        padding: 2.5rem 0 4rem 0;
        min-height: 100vh;
        height: auto;
    }

    .hero-bg {
        height: 100%;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 0.75rem;
        /* CRITICAL: Reserve height to prevent CLS on small screens */
        min-height: 200px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
        /* Reserve height for font swaps on small screens */
        min-height: 1.725rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        word-break: break-word;
        /* Reserve height for font swaps on small screens */
        min-height: 1.6rem;
    }

    .hero-author {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        /* Reserve height for font swaps on small screens */
        min-height: 1.35rem;
    }

    .hero-blessing {
        font-size: 0.9rem;
        margin: 1rem 0;
    }

    .om-symbol {
        font-size: 1.5rem;
    }

    /* Divine Images */
    .divine-image {
        width: 120px;
        height: 120px;
        border: 4px solid transparent;
    }

    .divine-image.mother {
        width: 200px;
        height: 200px;
    }

    .divine-caption {
        font-size: 0.9rem;
    }

    .divine-labels {
        font-size: 0.7rem;
    }

    .divine-connector {
        height: 30px;
    }

    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Books */
    .books-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .book-content {
        padding: 1rem;
    }

    .book-title {
        font-size: 1.4rem;
    }

    .book-description {
        font-size: 0.95rem;
    }

    .book-meta {
        font-size: 0.9rem;
        padding: 0.85rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
        min-height: 44px; /* Better touch target for mobile */
        min-width: 44px;
    }

    .btn i {
        font-size: 1rem;
    }

    /* About */
    .about {
        padding: 2.5rem 0;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .dedication h3, .contact h3 {
        font-size: 1.3rem;
    }

    .dedication, .contact {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        gap: 0.5rem;
    }

    .footer-blessing {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-copyright {
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .footer-meta {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .footer-version,
    .footer-updated {
        font-size: 0.85rem;
        margin: 0.25rem 0;
        line-height: 1.2;
    }

    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-meta {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-version,
    .footer-updated {
        font-size: 0.85rem;
        margin: 0.25rem 0;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
    }

    .scroll-indicator i {
        font-size: 1.2rem;
    }
}

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

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: var(--dark-bg);
}

/* Focus Accessibility */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
    border-radius: 4px;
    transition: outline-offset 0.2s ease;
}

:focus-visible:hover {
    outline-offset: 6px;
}

/* Enhanced section transitions */
section {
    scroll-margin-top: 80px;
}

/* Library section background enhancement */
.library {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(31, 11, 17, 0.95) 100%);
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(13, 5, 6, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.5rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .nav-menu a {
        border-radius: 6px;
        transition: background 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(232, 196, 104, 0.1);
    }
}

/* Improved spacing system */
.hero-blessing {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.8s both;
    letter-spacing: 0.3px;
}

.divine-presence {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Enhanced button transitions */
.btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

/* Improved focus states for better accessibility */
.btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

#audio-toggle:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 50%;
/* Optimized FAQ Section - Enhanced for Better Reading */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Controls for FAQ (Expand / Collapse All) */
.faq-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1rem;
}

.btn-small {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2), rgba(31, 11, 17, 0.06));
    color: var(--text-light);
    border: 1px solid rgba(232, 196, 104, 0.18);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }

/* Style details/summary for collapsible FAQ blocks */
.faq-block summary { list-style: none; display: flex; gap: 1rem; align-items: center; }
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary { cursor: pointer; }
.faq-block[open] { border-color: var(--accent-color); box-shadow: 0 12px 40px var(--shadow-colored); transform: translateY(-2px); }
.faq-block[open] .faq-block-header { background: linear-gradient(135deg, rgba(139, 38, 53, 0.25) 0%, rgba(31, 11, 17, 0.15) 100%); }

/* Quick Navigation */
.faq-nav {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.faq-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

.nav-header i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.nav-intro {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav-link {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.1) 100%);
    color: var(--text-dark);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 196, 104, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1rem;
    color: var(--accent-color);
}

.nav-link span {
    font-weight: 600;
}

.nav-link:hover {
    background: var(--gold-gradient);
    color: #2D0F18;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 196, 104, 0.3);
}

.nav-link.active {
    background: var(--maroon-gradient);
    color: var(--accent-bright);
    border-color: var(--accent-color);
}

/* FAQ Blocks */
.faq-block {
    background: rgba(31, 11, 17, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.faq-block:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(232, 196, 104, 0.1);
    transform: translateY(-4px);
}

.faq-block[open] {
    background: rgba(45, 15, 24, 0.9);
    border-color: var(--accent-bright);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 196, 104, 0.2);
    transform: translateY(-2px);
}

.faq-block summary {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.faq-block summary::-webkit-details-marker {
    display: none;
}

.faq-block-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-block-header:hover {
    background: rgba(232, 196, 104, 0.05);
}

.faq-block[open] .faq-block-header {
    background: rgba(139, 38, 53, 0.15);
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
}

.faq-block-header::after {
    content: '▾';
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-block[open] .faq-block-header::after {
    transform: rotate(180deg);
    color: var(--accent-bright);
}

/* FAQ Animation Classes */
@keyframes faqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-block.animated {
    animation: faqFadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2D0F18;
    box-shadow: 0 4px 12px rgba(184, 147, 90, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-block:hover .faq-icon {
    transform: scale(1.1);
}

.faq-heading {
    color: var(--accent-color);
    font-family: 'Philosopher', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-block:hover .faq-heading {
    color: var(--accent-bright);
}

.faq-category {
    background: rgba(232, 196, 104, 0.15);
    color: #2D0F18;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-content {
    color: var(--text-dark);
    line-height: 1.8;
    padding: 0;
    overflow: hidden;
}

.faq-content-inner {
    padding: 1.5rem 2rem 2rem 2rem;
    animation: faqContentFade 0.5s ease-out;
}

@keyframes faqContentFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.12) 0%, rgba(184, 147, 90, 0.06) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1rem;
}

.btn-small {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2), rgba(31, 11, 17, 0.06));
    color: var(--text-light);
    border: 1px solid rgba(232, 196, 104, 0.18);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    background: rgba(139, 38, 53, 0.3);
    border-color: var(--accent-color);
}

/* Content Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-card {
    background: rgba(24, 10, 15, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.card-title {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 6px;
    padding-left: 2.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.feature-list li:hover::before {
    transform: scale(1.3) rotate(15deg);
}

/* Special Content Sections */
.divine-role, .important-note, .testimonial-quote, .blessing {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.divine-role h4, .important-note h4, .testimonial-quote h4, .blessing h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.divine-role p, .important-note p, .testimonial-quote p, .blessing p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-quote {
    text-align: center;
    font-style: italic;
}

.blessing {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.15) 100%);
}

/* Sanskrit Name Breakdown */
.name-explained {
    margin: 2rem 0;
}

.name-card {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sanskrit-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sanskrit-term {
    background: rgba(13, 5, 6, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.sanskrit-term strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.sanskrit-term p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Roles Grid */
.roles-section {
    margin: 2.5rem 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.role-item {
    background: rgba(24, 10, 15, 0.6);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.2);
    transition: all 0.3s ease;
    color: var(--text-dark);
    line-height: 1.6;
}

.role-item:hover {
    background: rgba(232, 196, 104, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.role-item strong {
    color: var(--accent-bright);
    font-weight: 700;
}

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

.benefit-card {
    background: rgba(24, 10, 15, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 196, 104, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 196, 104, 0.2);
    border-color: var(--accent-color);
}

.benefit-card .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.benefit-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.4px;
}

.benefit-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Benefits List Enhanced */
.benefits-list {
    margin: 2rem 0;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(24, 10, 15, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.benefit-point:hover {
    background: rgba(24, 10, 15, 0.9);
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: transform 0.4s ease;
}

.benefit-point:hover .point-icon {
    transform: scale(1.4) rotate(15deg);
}

.point-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

.point-content strong {
    color: var(--accent-bright);
    font-weight: 700;
}

/* Parampara Details */
.parampara-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-card {
    background: rgba(24, 10, 15, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.detail-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.saint-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.saint-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
}

.saint-list li:last-child {
    border-bottom: none;
}

.saint-list li strong {
    color: var(--accent-bright);
    font-weight: 700;
}

/* Chanting Guide Enhanced */
.chanting-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.powerful-truth {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.4) 0%, rgba(31, 11, 17, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.guide-section, .powerful-truth {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.guide-section:hover, .powerful-truth:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.guide-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.4px;
    border-bottom: 2px solid rgba(232, 196, 104, 0.3);
    padding-bottom: 0.75rem;
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.instruction-list li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 8px;
    padding-left: 2.5rem;
}

.instruction-list li:last-child {
    border-bottom: none;
}

.instruction-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.instruction-list li:hover::before {
    transform: translateX(5px);
}

/* Free Guarantee Section */
.free-guarantee, .philosophy, .living-temple, .coming-soon {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.free-guarantee h4, .philosophy h4, .living-temple h4, .coming-soon h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.free-guarantee p, .philosophy p, .living-temple p, .coming-soon p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.free-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(24, 10, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.2);
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(232, 196, 104, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.feature-point span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Future List */
.future-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.future-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
}

.future-list li:last-child {
    border-bottom: none;
}

.future-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Blessing Note */
.blessing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.15) 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blessing-note p {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Optimized FAQ */
@media (max-width: 768px) {
    .faq-container {
        gap: 2rem;
    }
    
    .faq-block {
        padding: 1.75rem;
    }
    
    .faq-heading {
        font-size: 1.5rem;
    }
    
    .faq-lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .content-grid,
    .benefits-showcase,
    .parampara-details,
    .chanting-guide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .sanskrit-breakdown {
        grid-template-columns: 1fr;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-point {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .point-icon {
        font-size: 1.5rem;
    }
    
    .point-content {
        font-size: 1rem;
    }
    
    .free-features {
        gap: 0.75rem;
    }
}

/* Enhanced FAQ Section Styles */
.faq-block[data-category="divine"] .faq-icon {
    background: linear-gradient(135deg, #8B2635 0%, #A23D4A 50%, #8B2635 100%);
}

.faq-block[data-category="benefits"] .faq-icon {
    background: linear-gradient(135deg, #E8C468 0%, #F4E4C1 50%, #E8C468 100%);
}

.faq-block[data-category="lineage"] .faq-icon {
    background: linear-gradient(135deg, #C9A962 0%, #E8C468 50%, #C9A962 100%);
}

.faq-block[data-category="practice"] .faq-icon {
    background: linear-gradient(135deg, #8B2635 0%, #E8C468 50%, #8B2635 100%);
}

.faq-block[data-category="access"] .faq-icon {
    background: linear-gradient(135deg, #E8C468 0%, #F4E4C1 50%, #E8C468 100%);
}

.faq-block[data-category="future"] .faq-icon {
    background: linear-gradient(135deg, #C9A962 0%, #E8C468 50%, #C9A962 100%);
}

/* Category-based navigation styling */
.nav-link[data-category="divine"]:hover {
    background: linear-gradient(135deg, #8B2635 0%, #A23D4A 100%);
}

.nav-link[data-category="benefits"]:hover {
    background: linear-gradient(135deg, #E8C468 0%, #F4E4C1 100%);
}

.nav-link[data-category="lineage"]:hover {
    background: linear-gradient(135deg, #C9A962 0%, #E8C468 100%);
}

.nav-link[data-category="practice"]:hover {
    background: linear-gradient(135deg, #8B2635 0%, #E8C468 100%);
}

.nav-link[data-category="access"]:hover {
    background: linear-gradient(135deg, #E8C468 0%, #F4E4C1 100%);
}

.nav-link[data-category="future"]:hover {
    background: linear-gradient(135deg, #C9A962 0%, #E8C468 100%);
}

/* Enhanced role items with icons */
.role-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(24, 10, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.2);
    transition: all 0.3s ease;
    color: var(--text-dark);
    line-height: 1.6;
}

.role-item:hover {
    background: rgba(232, 196, 104, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.role-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Enhanced benefit points */
.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(24, 10, 15, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.benefit-point:hover {
    background: rgba(24, 10, 15, 0.9);
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: transform 0.4s ease;
}

.benefit-point:hover .point-icon {
    transform: scale(1.4) rotate(15deg);
}

.point-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

.point-content strong {
    color: var(--accent-bright);
    font-weight: 700;
}

/* Enhanced feature points */
.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(24, 10, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.2);
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(232, 196, 104, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.feature-point span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Enhanced instruction lists */
.instruction-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.instruction-list li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 8px;
    padding-left: 3rem;
}

.instruction-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.instruction-list li:hover::before {
    transform: translateX(5px);
}

/* Enhanced future list */
.future-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.future-list li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 8px;
    padding-left: 3rem;
}

.future-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.future-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Enhanced saint list */
.saint-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(232, 196, 104, 0.1);
    transition: all 0.3s ease;
}

.saint-list li:hover {
    background: rgba(232, 196, 104, 0.05);
    border-radius: 8px;
    padding-left: 3rem;
}

.saint-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.saint-list li:hover::before {
    transform: scale(1.3) rotate(15deg);
}

.saint-list li strong {
    color: var(--accent-bright);
    font-weight: 700;
}

/* Enhanced blessing note */
.blessing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.15) 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blessing-note p {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Enhanced free guarantee sections */
.free-guarantee, .philosophy, .living-temple, .coming-soon {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.free-guarantee:hover, .philosophy:hover, .living-temple:hover, .coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.free-guarantee h4, .philosophy h4, .living-temple h4, .coming-soon h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.free-guarantee p, .philosophy p, .living-temple p, .coming-soon p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced powerful truth section */
.powerful-truth {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.4) 0%, rgba(31, 11, 17, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.powerful-truth:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.powerful-truth h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.powerful-truth p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced chanting guide */
.chanting-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guide-section, .powerful-truth {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.guide-section:hover, .powerful-truth:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.guide-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.4px;
    border-bottom: 2px solid rgba(232, 196, 104, 0.3);
    padding-bottom: 0.75rem;
}

/* Enhanced name explained section */
.name-explained {
    margin: 2rem 0;
}

.name-card {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sanskrit-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sanskrit-term {
    background: rgba(13, 5, 6, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.sanskrit-term strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.sanskrit-term p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced roles section */
.roles-section {
    margin: 2.5rem 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Enhanced parampara details */
.parampara-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-card {
    background: rgba(24, 10, 15, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.detail-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

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

.benefit-card {
    background: rgba(24, 10, 15, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 196, 104, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 196, 104, 0.2);
    border-color: var(--accent-color);
}

.benefit-card .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.benefit-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.4px;
}

.benefit-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Enhanced benefits list */
.benefits-list {
    margin: 2rem 0;
}

/* Enhanced free features */
.free-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

/* Enhanced future list */
.future-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

/* Enhanced blessing */
.blessing {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2) 0%, rgba(31, 11, 17, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(232, 196, 104, 0.3);
}

.blessing p {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced testimonial quote */
.testimonial-quote {
    text-align: center;
    font-style: italic;
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.testimonial-quote p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.testimonial-quote p:first-child {
    font-weight: 600;
    color: var(--accent-color);
    font-style: normal;
}

.testimonial-quote p:last-child {
    font-style: italic;
    color: var(--text-light);
}

/* Enhanced important note */
.important-note {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.important-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.important-note h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.important-note p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced divine role */
.divine-role {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.divine-role:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.divine-role h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.divine-role p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced name explained */
.name-explained {
    margin: 2rem 0;
}

.name-card {
    background: rgba(24, 10, 15, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.name-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.name-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* Enhanced sanskrit breakdown */
.sanskrit-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sanskrit-term {
    background: rgba(13, 5, 6, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.sanskrit-term:hover {
    background: rgba(232, 196, 104, 0.1);
    transform: translateX(5px);
}

.sanskrit-term strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.sanskrit-term p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced roles section */
.roles-section {
    margin: 2.5rem 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Enhanced parampara details */
.parampara-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Enhanced chanting guide */
.chanting-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Enhanced powerful truth */
.powerful-truth {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.4) 0%, rgba(31, 11, 17, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.powerful-truth:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.powerful-truth h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.powerful-truth p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced free guarantee */
.free-guarantee, .philosophy, .living-temple, .coming-soon {
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.free-guarantee:hover, .philosophy:hover, .living-temple:hover, .coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-color);
}

.free-guarantee h4, .philosophy h4, .living-temple h4, .coming-soon h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.free-guarantee p, .philosophy p, .living-temple p, .coming-soon p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced free features */
.free-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

/* Enhanced future list */
.future-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

/* Enhanced blessing note */
.blessing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(31, 11, 17, 0.15) 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blessing-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.blessing-note h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.blessing-note p {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Enhanced testimonial quote */
.testimonial-quote {
    text-align: center;
    font-style: italic;
    background: linear-gradient(135deg, rgba(232, 196, 104, 0.15) 0%, rgba(184, 147, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(232, 196, 104, 0.4);
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.testimonial-quote p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.testimonial-quote p:first-child {
    font-weight: 600;
    color: var(--accent-color);
    font-style: normal;
}

.testimonial-quote p:last-child {
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 480px) {
    .faq-nav {
        padding: 1.5rem;
    }
    
    .faq-block {
        padding: 1.25rem;
    }
    
    .faq-heading {
        font-size: 1.3rem;
    }
    
    .content-card,
    .benefit-card,
    .detail-card,
    .guide-section,
    .powerful-truth {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card .benefit-icon {
        font-size: 2.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-point {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .point-icon {
        margin: 0 auto;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0.75rem;
    }

    .footer-content {
        gap: 0.35rem;
    }

    .footer-blessing {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .footer-meta {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .footer-version,
    .footer-updated {
        font-size: 0.75rem;
        margin: 0.2rem 0;
        line-height: 1.2;
    }
}
}

/* Simplified FAQ Styles */
.faq-content h4 {
    color: var(--accent-color);
    font-family: 'Philosopher', sans-serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 0.3rem;
    display: inline-block;
}

.faq-content ul {
    list-style-type: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.faq-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-content ul li::before {
    content: '\2022';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.faq-content p {
    margin-bottom: 1rem;
}

