 :root {
            --saffron: #FF9933;
            --deep-gold: #D4AF37;
            --spiritual-red: #800000;
        }
        body { font-family: 'Poppins', sans-serif; }
        h1, h2, h3, .font-cinzel { font-family: 'Cinzel', serif; }

        .bg-saffron { background-color: var(--saffron); }
        .text-gold { color: var(--deep-gold); }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1620121692029-d088224ddc74?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            border-bottom: 5px solid var(--deep-gold);
        }

        .mandala-pattern {
            background-color: #fffaf0;
            background-image: url("https://www.transparenttextures.com/patterns/flowers.png");
        }

        .gold-border {
            border: 2px solid var(--deep-gold);
        }

        .btn-spiritual {
            background: linear-gradient(135deg, #FF9933 0%, #D4AF37 100%);
            transition: all 0.3s ease;
        }
        .btn-spiritual:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        /* --- Dotted Trail Styling --- */
        .trail-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .trail-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
            position: relative;
        }
        .trail-dot {
            width: 16px;
            height: 16px;
            background: var(--saffron);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 10px rgba(255, 153, 51, 0.5);
        }
        .trail-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 8px;
            color: #444;
            letter-spacing: 0.5px;
        }
        .dotted-line {
            position: absolute;
            top: 28px;
            left: 5%;
            right: 5%;
            border-top: 3px dotted var(--deep-gold);
            z-index: 1;
        }