/* Jal Prasadam Page Specific Premium Styles */

.header {
    width: 100%;
    height: 380px;
    background-image: linear-gradient(rgba(78, 26, 15, 0.85), rgba(78, 26, 15, 0.95)), url('/images/02-DHOOP-ARTI-21_03_15-1024x678.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.header h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin: 0 0 15px 0;
    color: var(--accent-gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.header p {
    font-size: 18px;
    color: #e6d5c3;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.jal-prasadam {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.jal-prasadam .flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.jal-prasadam .flex .box {
    flex: 1;
    min-width: 300px;
}

.video-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.video-box {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
    cursor: pointer;
    background: #000;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.video-box:hover img {
    transform: scale(1.04);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    transition: var(--transition-smooth);
    pointer-events: none;
}

.video-box:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    fill: var(--accent-gold-light);
}

.video-caption {
    font-size: 13px;
    font-family: var(--font-heading);
    color: var(--divine-vermillion);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.jal-prasadam h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.intro-p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.concept-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(232, 184, 64, 0.25);
    box-shadow: var(--shadow-divine);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.concept-icon {
    font-size: 24px;
    color: var(--divine-vermillion);
    line-height: 1;
}

.concept-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.concept-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Core Benefits */
.benefits-section {
    padding: 100px 0;
    border-top: 1px solid rgba(78, 26, 15, 0.1);
    border-bottom: 1px solid rgba(78, 26, 15, 0.1);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-title::after {
    content: '❖';
    display: block;
    color: var(--divine-vermillion);
    font-size: 16px;
    margin-top: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(232, 184, 64, 0.25);
    box-shadow: var(--shadow-divine);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--accent-gold);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Ritual steps */
.ritual-section {
    padding: 100px 0;
}

.ritual-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.ritual-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-light));
    z-index: 1;
}

.ritual-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, var(--primary-color) 100%);
    border: 3px solid var(--accent-gold);
    color: white;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(212, 91, 18, 0.4);
    transition: var(--transition-smooth);
}

.ritual-step:hover .step-num {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--accent-gold-light);
    box-shadow: 0 6px 18px rgba(212, 91, 18, 0.6);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Request Form Section */
.request-section {
    padding: 100px 0;
}

.request-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 850px;
    margin: 0 auto;
    border: 3px double var(--accent-gold);
    box-shadow: var(--shadow-divine);
    position: relative;
    overflow: hidden;
}

.request-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--parchment-border);
    border-radius: 14px;
    pointer-events: none;
}

.request-card h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.request-card p {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prasadam-form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--parchment-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--divine-vermillion);
    background-color: white;
    box-shadow: 0 0 10px rgba(212, 91, 18, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.prasadam-form .premium-btn {
    width: 100%;
    margin-top: 10px;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ritual-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .ritual-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        height: 280px;
    }
    
    .header h1 {
        font-size: 38px;
    }
    
    .header p {
        font-size: 15px;
    }
    
    .jal-prasadam {
        padding: 60px 0;
    }
    
    .jal-prasadam .flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .jal-prasadam h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .intro-p {
        text-align: center;
    }
    
    .concept-card {
        padding: 20px;
    }
    
    .benefits-section,
    .ritual-section,
    .request-section,
    .video-slider {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .request-card {
        padding: 30px 20px;
    }
    
    .request-card h2 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .ritual-timeline {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}