/* packages.css - CareMed Wellness */

/* Hero Banner */
.packages-page-wrapper {
    background-color: var(--about-bg-light, #f8fbfb);
}

.packages-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 31% 49%, rgba(0, 168, 168, 0.1) 0%, rgb(61 203 114 / 12%) 28%, rgb(2 2 2 / 60%) 45%, rgba(0, 0, 0, 0.9) 100%), url('../images/services/package.jpg') center / cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    margin: 10px;
}

.packages-hero-content {
    position: relative;
    z-index: 2;
}

.packages-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.packages-hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.breadcrumb-pill a {
    color: var(--about-primary, #1e3a5f);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-pill a:hover {
    color: var(--about-green, #4CAF50);
}

.text-gradient-packages {
    background: linear-gradient(135deg, #4CAF50, #009688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-floating-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--caremed-bluish);
    font-size: 1.5rem;
    z-index: 3;
    animation: floatUpDown 4s linear-in-out infinite;
}

.cfi-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    width: 50px;
    height: 50px;
    text-align: center;
}

.cfi-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
    text-align: center;
}

.cfi-3 {
    top: 50%;
    right: 5%;
    animation-delay: 0.7s;
    width: 50px;
    height: 50px;
    text-align: center;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Common Card Styling */
.pkg-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pkg-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--caremed-bluish);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.pkg-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pkg-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--caremed-green);
    font-size: 1rem;
}

/* Membership Specific */
.membership-card {
    border-top: 5px solid var(--caremed-bluish);
}

.membership-card.popular {
    border-top: 5px solid var(--caremed-green);
    position: relative;
}

.membership-card.popular::after {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--caremed-green-gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(107, 203, 61, 0.3);
}

.membership-card.luxe {
    border-top: 5px solid #111;
    background: #fafafa;
}

/* Wellness Add-Ons New Cards */
.addon-card-new {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    /* height: 100%; */
}

.addon-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.addon-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.addon-content {
    flex-grow: 1;
    padding: 0 20px;
}

.addon-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--about-primary, #1e3a5f);
    margin-bottom: 6px;
}

.addon-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.addon-action {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    flex-shrink: 0;
}

.addon-price-tag {
    color: var(--caremed-bluish);
    font-size: 1.4rem;
    font-weight: 800;
}

.addon-plus-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--about-primary, #1e3a5f);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addon-plus-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    color: #6bcb3d;
}

/* Section Headings */
.section-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: rgb(0 150 136 / 14%);
    color: var(--caremed-bluish);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* -------------------------------------
   LUXURY WELLNESS UPGRADES
-------------------------------------- */

/* Background Animations & Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 203, 61, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Animated Gradients */
.text-gradient-animated {
    background: linear-gradient(270deg, var(--caremed-bluish), var(--caremed-green), #2e7d32);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgb(255 255 255);
    /* background: rgba(255, 255, 255, 0.6); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03);
    padding: 30px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.glass-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(255 152 0 / 28%), rgb(255 152 0 / 18%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--caremed-orange);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Savings Calculator */
.calculator-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.calc-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--caremed-bluish);
    margin: 10px 0;
}

/* Vertical Timeline (CareMed Rings) */
.cm-timeline {
    position: relative;
    padding: 40px 0;
}

.cm-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgb(0 150 136 / 23%), var(--caremed-bluish), rgb(0 150 136 / 25%));
    transform: translateX(-50%);
}

.cm-timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
    text-align: right;
}

.cm-timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
}

.cm-timeline-ring {
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid var(--caremed-bluish);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--caremed-bluish);
    box-shadow: 0 0 0 5px rgba(107, 203, 61, 0.1);
    z-index: 2;
}

.cm-timeline-item:nth-child(even) .cm-timeline-ring {
    right: auto;
    left: -25px;
}

/* Premium FAQ Accordion */
.premium-accordion .accordion-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--caremed-bluish);
    padding: 20px 25px;
    box-shadow: none !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--caremed-green);
    background: rgba(107, 203, 61, 0.03);
}

.premium-accordion .accordion-body {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cm-timeline::before {
        left: 30px;
    }

    .cm-timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .cm-timeline-item:nth-child(even) {
        padding-left: 80px;
    }

    .cm-timeline-ring,
    .cm-timeline-item:nth-child(even) .cm-timeline-ring {
        left: 5px;
        right: auto;
    }
}