/* Plasma Med Bed Page Styles */

.plasma-hero {
  background: url('../public/plasma-banner.jpg') center/cover no-repeat;
    padding: 12rem 0 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plasma-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 152, 0, 0.3) 0%, transparent 50%);
    animation: plasmaFlow 15s ease-in-out infinite;
}

@keyframes plasmaFlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.plasma-hero-content {
    position: relative;
    z-index: 1;
}

.plasma-hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05em;
    text-shadow: 0 8px 40px rgba(233, 30, 99, 0.6);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 8px 40px rgba(233, 30, 99, 0.6);
    }
    50% {
        text-shadow: 0 8px 60px rgba(233, 30, 99, 0.9);
    }
}

.plasma-hero-title .highlight {
    background: linear-gradient(135deg, #FF9800 0%, #E91E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.plasma-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.plasma-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.plasma-intro {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.intro-text > p {
    text-align: center;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
  
    margin: 0 auto 1rem;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.tech-feature {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tech-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    margin-bottom: 1.5rem;
}

.tech-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.plasma-features {
    padding: 7rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.plasma-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.15) 0%, transparent 50%);
}
.plasma-features p{
    margin-bottom: 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.plasma-features .section-title-center {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.feature-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.benefit-item h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.plasma-disclaimer {
    padding:  0;
 
}

.disclaimer-box {

    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-left: 6px solid #e53e3e;
}

.disclaimer-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 2rem;
    text-align: center;
}

.disclaimer-content p {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.disclaimer-content strong {
    color: #2d3748;
    font-weight: 700;
}

.disclaimer-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5568;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.plasma-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plasma-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.75rem 5rem;
    background: white;
    color: #E91E63;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.btn-cta-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.btn-cta-large:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-features,
    .features-grid {
        gap: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plasma-hero {
        padding: 8rem 0 6rem;
    }

    .plasma-hero-title {
        font-size: 3.5rem;
    }

    .plasma-hero-subtitle {
        font-size: 1.25rem;
    }

    .plasma-hero-tagline {
        font-size: 1.1rem;
    }

    .intro-text .section-title,
    .section-title-center {
        font-size: 2.2rem;
    }

    .tech-features,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plasma-intro,
    .plasma-features,
    .plasma-video,
    .plasma-benefits,
    .plasma-cta {
        padding: 5rem 0;
    }

    .plasma-disclaimer {
        padding: 4rem 0;
    }

    .disclaimer-box {
        padding: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .btn-cta-large {
        padding: 1.5rem 3.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .plasma-hero {
        padding: 6rem 0 4rem;
    }

    .plasma-hero-title {
        font-size: 2.5rem;
    }

    .plasma-hero-subtitle {
        font-size: 1.1rem;
    }

    .plasma-hero-tagline {
        font-size: 1rem;
    }

    .intro-text .section-title,
    .section-title-center {
        font-size: 1.8rem;
    }

    .intro-text > p {
        font-size: 1.05rem;
    }

    .tech-feature,
    .feature-card,
    .benefit-item {
        padding: 2rem;
    }

    .plasma-intro,
    .plasma-features,
    .plasma-video,
    .plasma-benefits,
    .plasma-cta {
        padding: 4rem 0;
    }

    .disclaimer-box {
        padding: 2rem;
    }

    .disclaimer-box h3 {
        font-size: 1.6rem;
    }

    .disclaimer-content p,
    .disclaimer-content ul {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .btn-cta-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.05rem;
    }
}


.session-section {
    padding: 70px 20px;
    background: #f7f9fc;
    font-family: 'Poppins', sans-serif;
}

.session-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.session-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: 1px;
}

.session-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.session-card h3 {
    font-size: 22px;
    color: #C2185B;
    margin-bottom: 8px;
}

.duration {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}

.price-list li strong {
    color: #C2185B;
}

.note {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-box p {
    margin: 6px 0;
    font-size: 15px;
}

.contact-box a {
    color: #C2185B;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .session-container h2 {
        font-size: 28px;
    }

    .price-list li {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
}

.theraphi-history {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.history-container {
    max-width: 1250px;
    margin: auto;
}

.history-container h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.history-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.history-container strong {
    color: #C2185B;
}

/* Responsive */
@media (max-width: 768px) {
    .history-container h2 {
        font-size: 28px;
    }

    .history-container p {
        font-size: 15px;
    }
}


.plasma-image-section {
    padding: 90px 20px;
    background: #f1f1f1;
    font-family: 'Poppins', sans-serif;
}

.plasma-wrapper {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.plasma-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.plasma-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.plasma-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.plasma-content strong {
    color: #C2185B;
}

.info-box {
    background: #f1f8f4;
    padding: 20px;
    border-left: 4px solid #C2185B;
    border-radius: 8px;
    margin: 25px auto;
    max-width: 1250px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #C2185B;
}

.info-box ul {
    padding-left: 18px;
}

.info-box li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* Responsive */
@media (max-width: 900px) {
    .plasma-wrapper {
        grid-template-columns: 1fr;
    }

    .plasma-content h2 {
        font-size: 28px;
    }
}

