/* Basic Reset and Variables (Optional, but good practice) */
:root {
    --color-orange-start: #9c5fff;
    /* Lighter Orange */
    --color-orange-end: #b47bfe;
    /* Darker Orange/Peach */
    --color-text-dark: #333;
    --color-text-gray: #666;
    --color-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0 5px 15px rgba(156, 95, 255, 0.5);
    --border-radius-card: 20px;
}

body {
    margin: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    /* Clean sans-serif font */
    background-color: #f0f2f5;
}

.price-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Styling --- */
.price-section {
    background: radial-gradient(62.4157% 80.1102% at 52.5481% 31.5073%, #9f55ff 5.53999%, #aa3bff 48.1982%, #6d01d1 78.5094%);
    padding: 40px 0;
    text-align: center;
    border-radius: 95px 95px 80px 80px;
    /* Curved bottom edge (adjust if top curve is needed for full page) */
    position: relative;
    overflow: hidden;
    /* To contain potential absolute elements */
}

/* --- Header Styling --- */
.price-header {
    color: var(--color-white);
    margin-bottom: 60px;
}

.price-top-label-pill {
    display: inline-block;
    font-size: 1.5em;
    /* Increased size */
    font-weight: 500;
    margin-bottom: 45px;
    padding: 10px 20px;
    /* Tighter padding for the pill shape */

    /* Background Styles */
    background-color: var(--color-white);
    color: #a7a7a7;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-header h1 {
    font-size: 6.2em;
    /* Significantly increased font size */
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 50px;
    /* Increased margin below heading */
    background-image: radial-gradient(43% 228.29700000000003% at 50% 60.6452%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* --- CTA Button Group: UPDATED SIZES --- */
.price-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.price-btn-primary-header {
    /* Existing Base Styles */
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: var(--color-white);
    color: #050505;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: var(--shadow-orange);
    transition: all 0.4s ease-in-out;
    /* Smooth transition for size change */
    position: relative;
    /* Needed for absolute positioning of pseudo-elements */
    overflow: hidden;
    /* Hide elements that slide in/out */
    z-index: 10;
    font-size: 1.2em;
    text-shadow: #333;

}

.price-btn-primary-header:hover {
    /* EXPAND the button width */
    padding-left: 45px;
    /* Increase padding on the left to allow space for the new avatar */
    padding-right: 45px;
    /* Keep right padding the same */
    box-shadow: 0 8px 25px rgba(81, 1, 173, 0.911);
    /* Enhance shadow on hover */
    transform: none;
    /* Removed previous translateY(-2px) pop-up */
    font-size: 1.3em;
}

.price-avatar {
    width: 30px;
    /* Increased avatar size */
    height: 30px;
    border-radius: 50%;
    margin-right: 12px;
    background-color: #ccc;
    border: 2px solid #fff;
    object-fit: cover;
}

.price-social-links {
    font-size: 1.5em;
    /* Slightly increased social link text size */
    opacity: 0.9;
    margin-top: 20px;
    /* Increased spacing */
    margin-bottom: 0;
}

.price-social-links a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 500;
}

/* --- Cards Styling --- */
.price-cards {
    display: flex;
    flex-direction: column;
    /* Stack cards vertically */
    align-items: center;
    /* Center the wide cards */
    gap: 40px;
    /* Space between the stacked cards */
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
    /* Added padding to bottom of section */
}

.price-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);

    /* Key Change: Set wide width (around 60% of container) */
    width: 70%;
    max-width: 800px;

    padding: 40px;
    text-align: left;
    position: relative;

    /* Set up internal two-column layout */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split content into two equal columns */
    gap: 30px;

    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

/* Clients' Choice Ribbon */
.price-client-choice {
    margin-top: 0;
}

.price-ribbon-badge {
    position: absolute;
    top: -30px;
    right: 50%;
    transform: translateX(50%);

    width: 15vw;
    height: 20vh;

    background-image: url('Images/image.png');
    /* <<< Make sure this path is correct */
    background-size: contain;
    /* Scale image to fit the element */
    background-repeat: no-repeat;
    background-position: center;

}

/* Left Column Styling */
.price-card-content {
    /* Ensure only the content in the left column is styled this way */
    padding-right: 40px;
    border-right: 1px solid #e0e0e0
}

.price-service-title {
    font-size: 1.7em;
    font-weight: 500;
    margin-top: 0;
}

.price-value {
    font-size: 3.5em;
    /* Slightly larger price text */
    font-weight: 500;
    margin: 0 0 10px;
}

.price-description {
    color: var(--color-text-gray);
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* /* Right Column Styling: Features */
.price-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    /* Adjust top margin for visual balance */
    margin-bottom: 0;
    padding-left: 20px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.3em;
    color: #767373;
}

.price-features .price-icon {
    /* Replaced orange heart with a dedicated orange circle for feature checkmark */
    display: inline-block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    /* Prevent shrinking */
    background-color: #8442ff;
    /* Orange dot */
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 12px;
    /* Align vertically with text */
}

/* Card Button */
.price-btn-secondary {
    display: block;
    width: 70%;
    padding: 15px 20px;
    background-color: #ac0df5;
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(161, 66, 255, 0.5);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.price-btn-secondary:hover {
    background-color: #de49ff;
    border-color: #a938ff;
    box-shadow: 0 5px 10px rgba(151, 66, 255, 0.4);
}

.price-spots-available {
    text-align: left;
    /* Aligned left, below the button */
    font-size: 0.9em;
    color: var(--color-text-gray);
    margin-top: 15px;
    padding-left: 5px;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {

    .price-cards {
        gap: 20px;
    }

    .price-card {
        /* Slightly narrower cards on tablet landscape to avoid crowding */
        width: 60%; 
    }
}

@media (max-width: 992px) {
    .price-header h1 {
        font-size: 3.5em;
        /* Scale down for medium screens */
    }

    .price-card {
        width: 70%;
        /* Wider card to use more screen space */
        padding: 30px;
        /* Revert to single-column layout on small screens */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card-content {
        /* Remove divider for single column layout */
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px; /* Add space between content and features */
        border-bottom: 1px solid #e0e0e0; /* Add a bottom divider */
    }

    .price-features {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .price-section {
        border-radius: 55px 55px 45px 45px;
    }

    .price-header h1 {
        font-size: 2.8em;
    }

    .price-card {
        width: 80%;
        /* Make cards even wider for mobile use */
        padding: 25px;
    }
    
    /* Ensure the button and spots go below the main content */
    .price-btn-secondary {
        width: 90%;
        margin: 15px auto 0;
    }

    .price-spots-available {
        text-align: center;
        padding-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .price-card {
        width: 90%;
        /* Near full width on small mobile screens */
        padding: 20px;
    }

    .price-section {
        border-radius: 45px 45px 45px 45px;
    }

    .price-header h1 {
        font-size: 2.2em;
        /* Scale down further for mobile */
    }

    .price-btn-primary-header {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .price-top-label-pill {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    /* Ribbon Badge Adjustments for Mobile */
    .price-ribbon-badge {
        /* 1. Switch to fixed size for predictable scaling on mobile */
        width: 200px;
        height: 100px;

        /* 2. Reposition slightly lower/closer to the card body */
        top: -15px;

        /* 3. Keep centering consistent */
        right: 50%;
        transform: translateX(50%);
    }
}