/* Consultation Page Specific Spiritual Layout Styles */

.mission-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-light);
}

.mission-section .back-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/lantern3.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 0;
}

.mission-section .flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mission-section .flex .box {
    flex: 1;
    min-width: 300px;
}

.mission-section .img-box {
    padding: 0;
}

.mission-section .flex:nth-child(1) .img {
    width: 100%;
    height: 400px;
    border-radius: 50% 50% 20px 20px / 25% 25% 20px 20px; /* Arch frame */
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-divine-hover);
}

.mission-section .flex:nth-child(1) .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.mission-section h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--primary-color);
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 25px;
}

.mission-section .flex:nth-child(1) .box:nth-child(1) p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.mission-section button {
    padding: 15px 32px;
    border: 2px solid var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.mission-section button:hover {
    background-color: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
    box-shadow: 0 6px 18px rgba(212, 91, 18, 0.4);
    transform: translateY(-2px);
}

/* Call to Action Section */
.call-to-action {
    padding: 100px 0;
    background-color: #FAF4EB;
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
}

.call-to-action h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.call-to-action .flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.call-to-action .flex .box {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background: white;
    border-radius: 140px 140px 20px 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.call-to-action .flex .box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--accent-gold-light);
}

/* Redesigned as Jharokha cards - content section */
.call-to-action .card {
    background: transparent;
    padding: 45px 25px 15px 25px;
    text-align: center;
    border: none;
    box-shadow: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

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

.call-to-action .card .icon {
    width: 110px;
    height: 110px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 15px rgba(78, 26, 15, 0.25);
    transition: var(--transition-smooth);
}

.call-to-action .flex .box:hover .card .icon {
    transform: scale(1.08) rotate(5deg);
    background-color: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
}

.call-to-action .card .icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--accent-gold-light);
    fill: none;
    transition: var(--transition-smooth);
}

.call-to-action .flex .box:hover .card .icon svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

.call-to-action .card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-weight: 700;
}

.call-to-action .card p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    text-transform: none;
}

.call-to-action .cta {
    width: 100%;
    padding: 15px 25px 25px 25px;
    background-color: transparent;
    border: none;
    border-top: 1px dashed var(--parchment-border);
    box-shadow: none;
    text-align: center;
    position: relative;
}

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

.call-to-action .cta button {
    padding: 12px 28px;
    border: 2px solid var(--accent-gold);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, #B2460B 100%);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.call-to-action .cta button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(212, 91, 18, 0.5);
    background: linear-gradient(135deg, #B2460B 0%, var(--divine-vermillion) 100%);
    border-color: var(--accent-gold-light);
}

/* Below CTA Section stylized as Inner Sanctum backdrop */
.below-cta {
    padding: 100px 0;
    background-image: linear-gradient(rgba(30, 11, 7, 0.8), rgba(30, 11, 7, 0.8)), url('../images/02-DHOOP-ARTI-21_03_15-1024x678.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.below-cta .flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Redesigned as Scripture Scroll boxes */
.below-cta .flex .box {
    flex: 1;
    min-width: 300px;
    padding: 45px 35px;
    background-color: var(--parchment-bg);
    border-radius: 20px;
    border: 2px dashed var(--parchment-border);
    box-shadow: inset 0 0 40px rgba(78, 26, 15, 0.06), 0 15px 35px rgba(0,0,0,0.3);
}

.below-cta .flex .box h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
}

.below-cta .flex .box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.below-cta .flex .box .img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 50% 50% 12px 12px / 20% 20% 12px 12px; /* Arch frame */
    border: 2px solid var(--accent-gold);
}

.below-cta .flex .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.below-cta .flex .box:hover .img img {
    transform: scale(1.03);
}

.below-cta .flex .box ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.below-cta .flex .box ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

.below-cta .flex .box button {
    padding: 15px 32px;
    border: 2px solid var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin: 30px auto 0 auto;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.below-cta .flex .box button:hover {
    background-color: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
    box-shadow: 0 6px 18px rgba(212, 91, 18, 0.4);
    transform: translateY(-2px);
}

/* Important Notes */
.important-notes {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.important-notes .footer-i {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    opacity: 0.08;
    pointer-events: none;
}

.important-notes .flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.important-notes .flex .box:first-child {
    flex: 1.5;
    min-width: 300px;
}

.important-notes h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--accent-gold-light);
}

.important-notes p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--parchment-bg);
}

.important-notes .flex .box:last-child {
    flex: 1.2;
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(232, 184, 64, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.important-notes h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent-gold-light);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(232, 184, 64, 0.25);
    padding-bottom: 10px;
}

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

.prep-list li {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
    color: #e6d5c3;
    line-height: 1.6;
}

.prep-list li::before {
    content: '🔔';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

/* Call Now Info */
.call-now {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.call-now h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 44px;
    margin-top: 0;
    margin-bottom: 20px;
}

.call-now p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Contact Info cards */
.contact-info {
    padding: 80px 0;
    background-image: linear-gradient(rgba(253, 251, 248, 0.9), rgba(253, 251, 248, 0.9)), url('../images/360_F_298708695_NNm596MbwdmTnHf2aiTURRWiaIlL7NcK.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-info .flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info .flex .box {
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 370px;
    background-color: white;
    color: var(--primary-color);
    text-align: center;
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
    transition: var(--transition-smooth);
}

.contact-info .flex .box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--divine-vermillion);
}

.contact-info .flex .box p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

/* Stats Counter */
.counter {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.counter .flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.counter .flex .box {
    flex: 1;
    min-width: 220px;
    max-width: 270px;
    padding: 30px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
}

.counter .flex .box div {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 5px;
}

.counter .flex .box p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #E6D5C3;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .call-to-action .flex .box {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .mission-section, .call-to-action, .below-cta, .important-notes, .call-now, .contact-info, .counter {
        padding: 60px 0;
    }
    
    .mission-section h2, .call-to-action h2, .important-notes h2, .call-now h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .mission-section .flex, .below-cta .flex, .important-notes .flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .mission-section .flex .box, .below-cta .flex .box, .important-notes .flex .box {
        width: 100%;
        min-width: unset !important;
    }
    
    .mission-section .flex:nth-child(1) .img {
        height: 280px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .below-cta .flex .box {
        padding: 30px 20px;
        text-align: left;
    }
    
    .below-cta .flex .box h2 {
        font-size: 26px;
        text-align: center;
    }
    
    .below-cta .flex .box button {
        margin: 25px auto 0 auto;
    }
    
    .important-notes .flex .box:last-child {
        min-width: unset !important;
        width: 100%;
        padding: 25px 20px;
    }
    
    .important-notes .footer-i {
        display: none;
    }
    
    .prep-list li {
        text-align: left;
    }
    
    .contact-info .flex .box {
        max-width: 100%;
        width: 100%;
    }
    
    .counter .flex .box {
        flex: 1 1 45%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .mission-section h2, .call-to-action h2, .important-notes h2, .call-now h2 {
        font-size: 28px;
    }
    
    .counter .flex .box {
        flex: 1 1 100%;
    }
    
    .below-cta .flex .box ul {
        padding-left: 15px;
    }
}
