/**
 * AstroKrishiv – Shravan Mahotsav 2026 Theme & Design System
 * Perfectly aligned with AstroKrishiv's Royal Purple (#2C003E) & Vedic Gold (#D4AF37) brand palette.
 */

:root {
    --sk-brand-purple: #2C003E;
    --sk-brand-purple-light: #4A154B;
    --sk-brand-purple-dark: #1E002B;
    --sk-brand-gold: #D4AF37;
    --sk-brand-gold-dark: #B8860B;
    --sk-brand-gold-light: #FBF4E2;
    --sk-brand-gold-border: #E8D7A5;
    --sk-primary: #D4AF37;
    --sk-primary-dark: #B8860B;
    --sk-primary-light: #F5D77F;
    --sk-cream: #FDFBF7;
    --sk-cream-alt: #F8F5EE;
    --sk-cream-dark: #EFE9DE;
    --sk-maroon: #2C003E;
    --sk-maroon-dark: #1E002B;
    --sk-charcoal: #1E1B18;
    --sk-gray-text: #4B5563;
    --sk-gray-light: #F9FAFB;
    --sk-gray-border: #E5E7EB;
    --sk-emerald: #15803D;
    --sk-emerald-light: #DCFCE7;
    --sk-shadow-sm: 0 2px 8px rgba(44, 0, 62, 0.04);
    --sk-shadow-md: 0 8px 24px rgba(44, 0, 62, 0.07);
    --sk-shadow-lg: 0 16px 40px rgba(44, 0, 62, 0.10);
    --sk-radius: 12px;
    --sk-radius-lg: 16px;
    --sk-font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
    --sk-font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Backgrounds & Typography */
.bg-shravan-cream { background-color: #FBF9F5 !important; }
.bg-shravan-ivory { background-color: #F5F1E8 !important; }
.bg-shravan-maroon { background-color: var(--sk-brand-purple) !important; color: #ffffff !important; }
.bg-shravan-gradient {
    background: linear-gradient(135deg, #FDFBF7 0%, #F9F5EC 50%, #F5EEDB 100%) !important;
}
.bg-shravan-hero {
    background: linear-gradient(145deg, #1E002B 0%, #2C003E 50%, #4A154B 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.bg-shravan-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.20) 0%, transparent 65%);
    pointer-events: none;
}

.text-shravan-primary { color: var(--sk-brand-purple) !important; }
.text-shravan-gold { color: var(--sk-brand-gold-dark) !important; }
.text-shravan-maroon { color: var(--sk-brand-purple) !important; }
.text-shravan-charcoal { color: var(--sk-charcoal) !important; }
.text-shravan-muted { color: var(--sk-gray-text) !important; }

.font-serif-sacred { font-family: var(--sk-font-serif); }
.font-sans-ui { font-family: var(--sk-font-sans); }

/* Sacred Cards & Luxury Puja Cards */
.card-sacred {
    background: #ffffff;
    border-radius: var(--sk-radius-lg);
    border: 1px solid #EAE5DD;
    box-shadow: var(--sk-shadow-sm);
    transition: all 0.28s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}
.card-sacred:hover {
    box-shadow: var(--sk-shadow-md);
    border-color: #D6CEBE;
}
.card-sacred-gold {
    background: #ffffff;
    border: 2px solid var(--sk-brand-gold) !important;
    border-radius: var(--sk-radius-lg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15) !important;
}

.puja-card-luxury {
    background: #ffffff;
    border: 1.5px solid #ECE6DB;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(44, 0, 62, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.puja-card-luxury:hover {
    transform: translateY(-6px);
    border-color: var(--sk-brand-gold);
    box-shadow: 0 16px 36px rgba(44, 0, 62, 0.10);
}
.puja-card-luxury:hover .puja-card-img {
    transform: scale(1.06);
}
.puja-card-icon-bubble {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.puja-card-price-box {
    background: linear-gradient(135deg, #FAF7F0 0%, #F5EEDD 100%);
    border: 1px solid #E8DFCE;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}
.featured-ribbon-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    padding: 0.3rem 0.95rem;
    border-radius: 0 0 0 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
}

/* Sacred Buttons & Unique Puja Card Buttons */
.btn-puja-primary {
    background: linear-gradient(135deg, #2C003E 0%, #4A154B 50%, #2C003E 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 4px 16px rgba(44, 0, 62, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-puja-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
    transition: all 0.5s ease;
}
.btn-puja-primary:hover::before {
    left: 100%;
}
.btn-puja-primary:hover {
    background: linear-gradient(135deg, #1E002B 0%, #3B0053 50%, #1E002B 100%);
    color: var(--sk-brand-gold) !important;
    border-color: var(--sk-brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 0, 62, 0.35), 0 0 12px rgba(212, 175, 55, 0.25);
}
.btn-puja-primary .btn-arrow-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--sk-brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-puja-primary:hover .btn-arrow-icon {
    background: var(--sk-brand-gold);
    color: #2C003E;
    transform: translateX(3px);
}

.btn-puja-secondary {
    background: #FAF7F0;
    color: var(--sk-brand-purple) !important;
    font-weight: 600;
    font-size: 0.82rem;
    border: 1.5px solid #E6DDCF;
    border-radius: 10px;
    padding: 0.55rem 1rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
}
.btn-puja-secondary:hover {
    background: #F4ECE0;
    border-color: var(--sk-brand-gold);
    color: var(--sk-brand-purple) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(44, 0, 62, 0.05);
}

.btn-shravan-primary {
    background: linear-gradient(135deg, #2C003E 0%, #4A154B 100%);
    color: #ffffff !important;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 9999px;
    padding: 0.85rem 2rem;
    box-shadow: 0 4px 15px rgba(44, 0, 62, 0.25);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.btn-shravan-primary:hover {
    background: linear-gradient(135deg, #1E002B 0%, #36004C 100%);
    color: var(--sk-brand-gold) !important;
    border-color: var(--sk-brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(44, 0, 62, 0.35);
}

/* Radiant Hero Gold Button (High Contrast & Click-Through) */
.btn-shravan-hero-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D77F 50%, #C69528 100%);
    color: #2C003E !important;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    padding: 0.95rem 2.5rem;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-decoration: none;
}
.btn-shravan-hero-gold:hover {
    background: linear-gradient(135deg, #E6C454 0%, #FFE599 50%, #D4AF37 100%);
    color: #1E002B !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55), 0 0 20px rgba(245, 215, 127, 0.4);
}

/* Glassmorphism Hero Outline Button */
.btn-shravan-hero-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 0.95rem 2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-decoration: none;
}
.btn-shravan-hero-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #F5D77F;
    color: #F5D77F !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Elevated Trust Bar */
.trust-bar-shravan {
    background: #FFFFFF;
    border-top: 1px solid #EBE4D5;
    border-bottom: 1.5px solid #E5DCCA;
    padding: 1.75rem 0;
    box-shadow: 0 4px 15px rgba(44, 0, 62, 0.03);
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FBF6EB;
    border: 1.5px solid #E8D7A5;
    color: var(--sk-brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.trust-item:hover .trust-icon {
    background: var(--sk-brand-purple);
    color: var(--sk-brand-gold);
    border-color: var(--sk-brand-gold);
    transform: scale(1.08);
}

.btn-shravan-secondary {
    background: #ffffff;
    color: var(--sk-brand-purple) !important;
    font-weight: 600;
    border: 1.5px solid var(--sk-brand-gold-border);
    border-radius: 9999px;
    padding: 0.85rem 2rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-shravan-secondary:hover {
    background: var(--sk-brand-gold-light);
    border-color: var(--sk-brand-gold);
    color: var(--sk-brand-purple) !important;
    transform: translateY(-2px);
}

/* Badges & Trust Pills */
.badge-sacred {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.badge-sacred-gold {
    background: var(--sk-brand-gold-light);
    color: #8C6207;
    border: 1px solid var(--sk-brand-gold-border);
}
.badge-sacred-purple {
    background: rgba(44, 0, 62, 0.08);
    color: var(--sk-brand-purple);
    border: 1px solid rgba(44, 0, 62, 0.15);
}
.badge-sacred-green {
    background: var(--sk-emerald-light);
    color: var(--sk-emerald);
    border: 1px solid #BBF7D0;
}

/* =========================================================
   3-STEP BOOKING WIZARD - BESPOKE LUXURY UI
   ========================================================= */

/* Top Progress Tracker */
.booking-progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto 2.5rem auto;
    max-width: 540px;
}
.booking-progress-tracker::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 45px;
    right: 45px;
    height: 3px;
    background: #E5E0D8;
    z-index: 1;
}
.booking-step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.booking-step-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #D5CEBF;
    color: #8C827A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 0.6rem auto;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.booking-step-node.active .booking-step-bubble {
    background: linear-gradient(135deg, #2C003E 0%, #4A154B 100%);
    border-color: var(--sk-brand-gold);
    color: var(--sk-brand-gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.25), 0 6px 16px rgba(44, 0, 62, 0.25);
    transform: scale(1.08);
}
.booking-step-node.completed .booking-step-bubble {
    background: #15803D;
    border-color: #15803D;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}
.booking-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #716962;
    transition: all 0.3s ease;
}
.booking-step-node.active .booking-step-label {
    color: var(--sk-brand-purple);
    font-weight: 700;
}
.booking-step-node.completed .booking-step-label {
    color: #15803D;
    font-weight: 600;
}

/* Time Slot Radio Card System */
.slot-select-card {
    display: block;
    cursor: pointer;
    background: #FFFFFF;
    border: 1.5px solid #E6E0D6;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    transition: all 0.22s ease;
    position: relative;
    height: 100%;
}
.slot-select-card:hover {
    border-color: var(--sk-brand-gold);
    background: #FDFCF9;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(44, 0, 62, 0.05);
}
.slot-select-card.selected,
.slot-select-card:has(input[type="radio"]:checked) {
    border-color: var(--sk-brand-purple) !important;
    background: #FDFBF7 !important;
    box-shadow: 0 0 0 3px rgba(44, 0, 62, 0.08), 0 4px 16px rgba(44, 0, 62, 0.08);
}
.slot-select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.slot-custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #C8BFB0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.slot-select-card:has(input[type="radio"]:checked) .slot-custom-radio {
    border-color: var(--sk-brand-purple);
    background: var(--sk-brand-purple);
}
.slot-select-card:has(input[type="radio"]:checked) .slot-custom-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

/* Form Controls with Luxury Touch */
.form-control-luxury,
.form-select-luxury {
    border: 1.5px solid #DDD6C9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #2D2621;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
}
.form-control-luxury:focus,
.form-select-luxury:focus {
    border-color: var(--sk-brand-purple);
    box-shadow: 0 0 0 3px rgba(44, 0, 62, 0.12);
    outline: none;
    background-color: #FFFFFF;
}

/* Informational / Sankalp Note Card */
.info-card-luxury {
    background: #FDFBF6;
    border: 1px solid #EBE4D5;
    border-left: 4px solid var(--sk-brand-gold);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

/* Persistent Summary Card (Right Column) */
.sticky-summary-card {
    position: sticky;
    top: 95px;
    background: #FFFFFF;
    border: 1.5px solid var(--sk-brand-gold-border);
    border-radius: var(--sk-radius-lg);
    box-shadow: 0 10px 30px rgba(44, 0, 62, 0.06);
    padding: 1.75rem 1.5rem;
}
.summary-details-box {
    background: #FBF9F3;
    border: 1px solid #EAE3D5;
    border-radius: 12px;
    padding: 1.15rem;
}
.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    border-bottom: 1px dashed #E8E0D2;
}
.summary-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-total-banner {
    background: linear-gradient(135deg, #FAF6EE 0%, #F5ECE0 100%);
    border: 1px solid var(--sk-brand-gold-border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Payment Section Styling */
.payment-trigger-box {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
    border: 1.5px solid var(--sk-brand-gold-border);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 6px 20px rgba(44, 0, 62, 0.04);
}
.btn-pay-luxury {
    background: linear-gradient(135deg, #2C003E 0%, #4A154B 50%, #2C003E 100%);
    color: #FFFFFF !important;
    font-family: var(--sk-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--sk-brand-gold);
    border-radius: 9999px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 24px rgba(44, 0, 62, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-pay-luxury:hover {
    background: linear-gradient(135deg, #1E002B 0%, #3B0053 50%, #1E002B 100%);
    color: var(--sk-brand-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(44, 0, 62, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .booking-progress-tracker {
        max-width: 100%;
    }
    .booking-progress-tracker::before {
        left: 30px;
        right: 30px;
    }
    .booking-step-bubble {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .booking-step-label {
        font-size: 0.72rem;
    }
    .sticky-summary-card {
        position: static;
        margin-top: 1.5rem;
    }
}
