/* ==========================================================================
   SATVIK WALLPAPER - DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */

/* 1. Root Variables & Theme Setup */
:root {
    /* Color Palette */
    --saffron-primary: #FF6F00;
    --saffron-light: #FF8F00;
    --saffron-dark: #E65100;
    --gold-accent: #FFD700;
    --gold-glow: #FFA000;
    
    /* Backgrounds */
    --bg-dark-core: #0D0603;
    --bg-dark-sec: #150A05;
    --bg-dark-card: rgba(30, 15, 8, 0.6);
    --bg-glass-nav: rgba(13, 6, 3, 0.8);
    --border-glass: rgba(255, 111, 0, 0.2);
    --border-glass-gold: rgba(255, 215, 0, 0.3);
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gold: #FFD700;
    --text-gray: #D7CCC8;
    --text-muted: #8D6E63;
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transition Speeds */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows & Blurs */
    --glow-saffron: 0 0 20px rgba(255, 111, 0, 0.4);
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.5);
    --blur-glass: 12px;
}

/* 2. Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-core);
    color: var(--text-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-core);
}
::-webkit-scrollbar-thumb {
    background: var(--saffron-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--saffron-light);
}

/* Background Spark Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.8) 0%, rgba(255, 111, 0, 0) 70%);
    border-radius: 50%;
    animation: drift linear infinite;
    opacity: 0.6;
}

@keyframes drift {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* 3. Typography Rules */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    letter-spacing: 1px;
}

p {
    font-weight: 300;
}

.highlight {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* 4. Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glow-saffron);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.6);
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron-primary));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-glow));
    color: var(--bg-dark-core);
    border: none;
    box-shadow: var(--glow-gold);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
}

/* 5. Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-glass-nav);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border-bottom: 1px solid var(--border-glass);
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    background: linear-gradient(to right, var(--text-white), var(--text-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-item {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron-primary);
    transition: width var(--transition-fast);
}

.nav-item:hover {
    color: var(--text-gold);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(13, 6, 3, 0.95);
    backdrop-filter: blur(var(--blur-glass));
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1.2rem;
    transition: all var(--transition-medium);
    transform: translateY(-110%);
    opacity: 0;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    display: flex;
}

.mobile-nav-item {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.mobile-nav-btn {
    text-align: center;
    width: 100%;
}

/* 6. Hero Section */
.hero-section {
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(255, 111, 0, 0.15) 0%, rgba(13, 6, 3, 0) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-spiritual {
    display: inline-block;
    background: rgba(255, 111, 0, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--text-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 111, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn-play-store {
    background: #000000;
    border: 2px solid var(--border-glass-gold);
    border-radius: 12px;
    padding: 0.75rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-play-store:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.play-icon {
    color: var(--text-gold);
}

.play-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.play-btn-text .small-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.play-btn-text .large-text {
    font-size: 1.1rem;
    font-weight: 800;
}

.app-store-coming-soon {
    border: 1px dashed var(--border-glass);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.coming-soon-badge {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gold);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Mockup Frame */
.hero-mockup {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 300px;
    height: 610px;
    background: #1e110b;
    border: 12px solid #2e1b12;
    border-radius: 44px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(255, 111, 0, 0.2);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(10deg);
    transition: transform var(--transition-slow);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-notch {
    width: 140px;
    height: 25px;
    background: #2e1b12;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark-core);
    display: flex;
    flex-direction: column;
    position: relative;
}

.screen-header {
    height: 65px;
    padding: 25px 15px 10px 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(13, 6, 3, 0.9);
}

.screen-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.screen-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-gold);
}

.screen-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.screen-img.active {
    opacity: 1;
}

.screen-footer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 6, 3, 0.9);
    border-top: 1px solid var(--border-glass);
}

.footer-dots {
    display: flex;
    gap: 8px;
}

.footer-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.footer-dots .dot.active {
    background: var(--saffron-primary);
    width: 12px;
    border-radius: 3px;
}

/* 7. Common Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, var(--text-white) 30%, var(--text-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 8. Features Section */
.features-section {
    background: var(--bg-dark-sec);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--saffron-primary);
    box-shadow: var(--glow-saffron);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.1);
    color: var(--saffron-primary);
    margin-bottom: 1.8rem;
    border: 1px solid rgba(255, 111, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.saffron-svg {
    color: var(--saffron-primary);
}

/* 9. Wallpapers Grid */
.wallpapers-section {
    background: var(--bg-dark-core);
}

.wallpapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.wallpaper-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
}

.wallpaper-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.wallpaper-img-wrapper {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
}

.wallpaper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.wallpaper-card:hover .wallpaper-img {
    transform: scale(1.06);
}

.wallpaper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 6, 3, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-medium);
}

.wallpaper-card:hover .wallpaper-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70%;
}

.btn-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-preview:hover {
    background: var(--text-white);
    color: var(--bg-dark-core);
}

.btn-download {
    background: var(--saffron-primary);
    border: none;
    color: var(--text-white);
    box-shadow: var(--glow-saffron);
}

.btn-download:hover {
    background: var(--saffron-light);
}

.wallpaper-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallpaper-info h3 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.category-tag {
    background: rgba(255, 111, 0, 0.12);
    border: 1px solid var(--border-glass);
    color: var(--text-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

/* 10. Ringtones Grid */
.ringtones-section {
    background: var(--bg-dark-sec);
}

.ringtones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ringtone-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    transition: all var(--transition-medium);
}

.ringtone-card:hover {
    border-color: var(--saffron-primary);
    transform: translateY(-3px);
}

.ringtone-top {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.ringtone-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--saffron-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    box-shadow: var(--glow-saffron);
}

.ringtone-play-btn:hover {
    transform: scale(1.08);
    background: var(--saffron-light);
}

.ringtone-details {
    flex-grow: 1;
}

.ringtone-title {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.ringtone-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ringtone-duration {
    font-size: 0.9rem;
    color: var(--text-gold);
}

.ringtone-waveform-container {
    margin-bottom: 1.5rem;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--saffron-primary), var(--gold-accent));
    border-radius: 3px;
    transition: width 0.1s linear;
}

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

.ringtone-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
}

.btn-ringtone-download {
    background: none;
    border: 1px solid var(--border-glass-gold);
    color: var(--text-gold);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-ringtone-download:hover {
    background: var(--gold-accent);
    color: var(--bg-dark-core);
}

.hidden {
    display: none !important;
}

/* 11. Footer */
.footer {
    background: var(--bg-dark-core);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand-info {
    max-width: 450px;
    display: flex;
    gap: 1.5rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-moto {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-nav h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-link-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    font-family: var(--font-body);
}

.footer-link-btn:hover {
    color: var(--saffron-primary);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 12. Modals Structure (Glassmorphism Modal Cards) */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 6, 3, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    background: rgba(26, 13, 7, 0.95);
    border: 1px solid var(--border-glass-gold);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 
                0 0 40px rgba(255, 111, 0, 0.15);
    transition: all var(--transition-medium);
}

.modal-card.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--saffron-primary);
}

.modal-header-title {
    font-size: 2.2rem;
    color: var(--text-gold);
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.8rem;
}

.modal-body-content {
    font-size: 1rem;
    color: var(--text-gray);
}

.modal-body-content h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 1.8rem 0 0.8rem 0;
}

.modal-body-content p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.modal-body-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.modal-body-content li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

/* Contact Form Layout */
.contact-form-layout {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 111, 0, 0.25);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.submit-btn {
    align-self: flex-start;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
}

.form-success-msg {
    text-align: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.success-icon {
    color: #4CAF50;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.4));
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success-msg p {
    font-size: 1.2rem;
    color: var(--text-white);
    font-family: var(--font-heading);
}

/* 13. Lightbox Style (Wallpaper Fullscreen) */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 2, 1, 0.95);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.lightbox-close-btn:hover {
    opacity: 1;
    color: var(--saffron-primary);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
    gap: 1.5rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    border: 2px solid var(--border-glass-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.lightbox-download-btn {
    padding: 0.8rem 2.2rem;
}

/* 14. Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }
    
    .badge-spiritual {
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-mockup {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .phone-frame {
        width: 260px;
        height: 530px;
        transform: none;
    }
    
    .phone-frame:hover {
        transform: scale(1.02);
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .modal-card {
        padding: 2.5rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   15. POLICY PAGES LAYOUT (SEPARATE HTML PAGES)
   ========================================================================== */
.policy-page-section {
    padding: 8rem 0 4rem 0;
    min-height: 80vh;
    background: radial-gradient(circle at 50% 30%, rgba(255, 111, 0, 0.1) 0%, rgba(13, 6, 3, 0) 70%);
}

.policy-page-card {
    background: rgba(26, 13, 7, 0.7);
    border: 1px solid var(--border-glass-gold);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.policy-page-card h1 {
    font-size: 2.2rem;
    color: var(--text-gold);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.policy-page-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 1.8rem 0 0.8rem 0;
}

.policy-page-card p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.policy-page-card ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-page-card li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.btn-back-home {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
