/* ==================== AYURVEDIC SERVICES PAGE STYLES ==================== */

.ayurvedic-page-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.ayurvedic-banner-card {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background-color: #fbf5e8;
    background-image: radial-gradient(#e6d3af 0.8px, transparent 0.8px);
    background-size: 16px 16px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #6b0000;
    box-shadow: 0 15px 35px rgba(107, 0, 0, 0.15);
    position: relative;
}

/* ---------------- LEFT PANEL ---------------- */
.ayurvedic-left-panel {
    padding: 40px 35px 200px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-ornament {
    text-align: left;
    margin-bottom: 25px;
}

.lotus-icon {
    font-size: 2.2rem;
    color: #6b0000;
    margin-bottom: 5px;
}

.ayurvedic-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: #6b0000;
    line-height: 0.95;
    margin: 0;
    letter-spacing: 1px;
}

.ayurvedic-sub-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b1810;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.title-deco-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a82424;
    margin-top: 10px;
}

.title-deco-line .line {
    height: 2px;
    width: 140px;
    background: linear-gradient(90deg, #a82424, transparent);
}

/* Treatments List Pills */
.treatments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.treatment-pill-item {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 15px 8px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #6b0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-pill-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(107, 0, 0, 0.12);
}

.pill-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c0000, #4d0000);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid #ffcc00;
}

.pill-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #26130b;
}

/* Bottom "And Many More" Banner */
.and-many-more-banner {
    background: linear-gradient(135deg, #7c0000 0%, #4a0000 100%);
    color: #ffffff;
    border-radius: 40px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 6px 15px rgba(124, 0, 0, 0.25);
    border: 1px solid #ffcc00;
    max-width: 320px;
}

.and-many-more-banner .banner-text {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.and-many-more-banner i {
    color: #ffcc00;
    font-size: 1rem;
}

/* ---------------- RIGHT PANEL ---------------- */
.ayurvedic-right-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.curved-image-frame {
    height: 100%;
    width: 100%;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    border-left: 6px solid #d4af37;
}

.curved-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom Features Strip */
.ayurvedic-bottom-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6b0000 0%, #3b0000 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 10px;
    border-top-left-radius: 30px;
    border-top: 2px solid #ffcc00;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    gap: 6px;
    padding: 0 5px;
    border-right: 1px solid rgba(255, 204, 0, 0.2);
}

.feature-badge:last-child {
    border-right: none;
}

.badge-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
}

.badge-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.badge-label strong {
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.badge-label span {
    font-size: 0.7rem;
    color: #ffd699;
    font-weight: 500;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .ayurvedic-banner-card {
        grid-template-columns: 1fr;
    }

    .curved-image-frame {
        border-top-left-radius: 0;
        height: 380px;
        border-left: none;
        border-top: 5px solid #d4af37;
    }

    .ayurvedic-left-panel {
        padding: 30px 20px;
    }

    .ayurvedic-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .ayurvedic-bottom-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 0;
    }

    .feature-badge {
        border-right: none;
    }

    .and-many-more-banner {
        max-width: 100%;
    }
}










/* ==================== NEW ANIMATIONS & INTERACTIVE EFFECTS ==================== */

/* 1. Floating Lotus Effect */
.lotus-icon {
    display: inline-block;
    animation: floatLotus 3s ease-in-out infinite alternate;
}

@keyframes floatLotus {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-8px) scale(1.05); }
}

/* 2. Entrance Animations for Pills */
.treatment-pill-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInPill 0.6s ease-out forwards;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Staggered Delay for Each Pill */
.treatment-pill-item:nth-child(1) { animation-delay: 0.2s; }
.treatment-pill-item:nth-child(2) { animation-delay: 0.4s; }
.treatment-pill-item:nth-child(3) { animation-delay: 0.6s; }
.treatment-pill-item:nth-child(4) { animation-delay: 0.8s; }
.treatment-pill-item:nth-child(5) { animation-delay: 1s; }

@keyframes slideInPill {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3. Gold Shimmer Effect on Pill Hover */
.treatment-pill-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.4), transparent);
    transition: 0.5s;
}

.treatment-pill-item:hover::after {
    left: 120%;
}

.treatment-pill-item:hover .pill-icon-circle {
    transform: rotate(360deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. Pulse Glow for "And Many More" Banner */
.and-many-more-banner {
    animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 5px 15px rgba(124, 0, 0, 0.3); transform: scale(1); }
    100% { box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5); transform: scale(1.02); }
}

/* 5. Smooth Image Zoom on Hover */
.curved-image-frame img {
    transition: transform 0.8s ease-in-out;
}

.curved-image-frame:hover img {
    transform: scale(1.08);
}

/* 6. Feature Badges Icon Pulse */
.badge-icon-wrap {
    transition: all 0.3s ease;
}

.feature-badge:hover .badge-icon-wrap {
    background: #ffcc00;
    color: #6b0000;
    transform: scale(1.15) rotate(10deg);
}

/* ==================== TREATMENT DETAIL MODAL POPUP ==================== */
.treatment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.treatment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.treatment-modal-card {
    background: #fbf5e8;
    border: 3px solid #6b0000;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    text-align: center;
}

.treatment-modal-overlay.active .treatment-modal-card {
    transform: scale(1);
}

.close-treatment-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b0000;
    cursor: pointer;
    font-weight: bold;
}

.modal-treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7c0000, #4d0000);
    color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
    border: 2px solid #ffcc00;
}

.modal-treatment-title {
    font-family: 'Cinzel', serif;
    color: #6b0000;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-treatment-desc {
    color: #3b1d11;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-herbs-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.herb-badge {
    background: #ffffff;
    border: 1px solid #d4af37;
    color: #6b0000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-book-btn {
    background: linear-gradient(135deg, #7c0000, #4d0000);
    color: #ffffff;
    border: 1px solid #ffcc00;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.modal-book-btn:hover {
    background: #ffcc00;
    color: #6b0000;
}












/* ==================== IMAGE SHINE & FLOATING BUBBLES ANIMATIONS ==================== */

/* Container Setup */
.curved-image-frame {
    position: relative;
    overflow: hidden;
}

/* 1. Light Sweep / Shining Beam Animation Across Image */
.image-shine-overlay {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 204, 0, 0.45) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 80%
    );
    transform: skewX(-25deg);
    animation: continuousShine 4.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

@keyframes continuousShine {
    0% { 
        left: -150%; 
    }
    35%, 100% { 
        left: 150%; 
    }
}

/* 2. Floating Golden Bubbles */
.image-bubbles-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.image-bubbles-wrapper .bubble {
    position: absolute;
    bottom: -30px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(212, 175, 55, 0.35));
    border: 1px solid rgba(255, 204, 0, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
    animation: floatUpBubble 6s infinite linear;
}

/* Different Sizes, Positions, and Speed Delays for Natural Feel */
.bubble.b1 { width: 18px; height: 18px; left: 15%; animation-duration: 5s; animation-delay: 0s; }
.bubble.b2 { width: 28px; height: 28px; left: 38%; animation-duration: 7s; animation-delay: 1.5s; }
.bubble.b3 { width: 14px; height: 14px; left: 58%; animation-duration: 4.5s; animation-delay: 0.8s; }
.bubble.b4 { width: 34px; height: 34px; left: 75%; animation-duration: 8s; animation-delay: 2.2s; }
.bubble.b5 { width: 22px; height: 22px; left: 88%; animation-duration: 6s; animation-delay: 3.2s; }

@keyframes floatUpBubble {
    0% {
        transform: translateY(0) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-450px) scale(1.1) rotate(360deg);
        opacity: 0;
    }
}