/* ==========================================================================
   04 — Components
   --------------------------------------------------------------------------
   Reusable UI components: buttons, cards, lists, badges, media, modals.
   ========================================================================== */


/* ==========================================================================
   BUTTONS
   ========================================================================== */

/* Purple CTA button */
.cta-purple {
    padding: 0.5em 1em;
    background: #453cd3;
    border-radius: 0.3rem;
    transition: 0.6s all;
    color: #fff;
    cursor: pointer;
}

.cta-purple:hover {
    background: #5cd9d6;
}

/* Blog inline CTA links */
a.blog-ctab {
    background: #453cd3;
    color: #fff;
    padding: 0.5em;
    border-radius: 0.3rem;
    font-weight: 600;
}

a.blog-ctab-teal {
    background: #5cd9d6;
    color: #fff !important;
}

a.blog-ctab-teal:hover {
    color: #fff;
    background: #453cd3;
}

/* Health page CTA */
.health-ctab {
    color: #fff;
    padding: 0.5em;
    border: 0.3rem solid white !important;
    font-weight: 600;
    margin-top: 7.5%;
    border-radius: 0.8rem;
    transition: 0.3s all;
}

.health-ctab:hover {
    text-decoration: none;
    opacity: 1 !important;
    background: #fff;
    color: #453cd3;
}

/* Animated gradient button (Marcom Summit / event promo) */
.promo-buttons {
    display: flex;
}

.p-button-wrapper {
    position: relative;
}

.p-single-button {
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 32px;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: linear-gradient(90deg, #57c2b9 0%, #1f4494 30.43%, #00b4e0 68.23%, #d45180 100%);
    background-size: 600% 600%;
    border-radius: 50px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    z-index: -1;
    transform: translate(-5px, -5px);
    transition: filter 0.4s ease-in;
}

.p-button-wrapper:hover .button-bg {
    filter: blur(10px);
    transition: filter 0.4s ease-in;
}

@media (max-width: 768px) {
    #promo-hero .promo-buttons {
        flex-direction: column;
        gap: 4em;
    }

    .p-button-wrapper:first-child {
        margin-right: 0;
    }
}

/* Co-op buttons */
.co-op-button {
    background: #000;
    color: #fff !important;
    transition: all 0.4s ease-in-out;
    -webkit-appearance: none;
    font-family: 'sofia-pro', sans-serif;
    font-weight: 700;
    text-transform: none;
    margin: 0.5em 0;
    font-size: 0.8em;
    padding: 2rem 3rem;
    text-align: center;
    line-height: 1;
    max-width: 200px;
}

.co-op-button:hover {
    background: #fff;
    color: #000 !important;
    border: solid 2px #000;
}

.co-op-button-pink {
    background: transparent;
    color: #fff !important;
    border: solid 2px #fff;
    transition: all 0.4s ease-in-out;
    -webkit-appearance: none;
    font-family: 'sofia-pro', sans-serif;
    font-weight: 700;
    text-transform: none;
    margin: 0.5em 0;
    font-size: 0.8em;
    padding: 2rem 3rem;
    text-align: center;
    line-height: 1;
    max-width: 200px;
}

.co-op-button-pink:hover {
    color: white !important;
    background: #d45180;
}

/* Talent sidebar button */
.talent-button {
    display: inline-block;
    background-color: #4238c7;
    color: white;
    padding: 10px 16px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.talent-button:hover {
    background-color: #5cd9d6;
}

/* Gravity Form upload-style link button */
.box-link-btn-gform-cs {
    background: #d8d8d8;
    border: 1px solid;
    color: #a0a0a0 !important;
    border-radius: 0.3rem;
    z-index: -1;
    transition: 0.6s all;
    padding: 5.5rem;
    margin: 1em 0;
    text-align: center;
    display: block;
}

.box-link-btn-gform-cs::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/wp-content/uploads/2025/02/Upload-Icon-Gray.svg");
    background-size: contain;
    margin-right: 15px;
    vertical-align: middle;
}


/* ==========================================================================
   PURPLE BACKGROUND CARD
   --------------------------------------------------------------------------
   NOTE: .bg-purple, .bg-purple-4m4h, .bg-purple-4m4pa, .bg-testimonial are
   all the same component. Future TODO: consolidate to one .bg-purple class.
   ========================================================================== */

.bg-purple,
.bg-testimonial {
    background: #453cd3;
    padding: 3em;
    border-radius: 3rem;
}

.bg-purple h4 {
    color: #fff;
    font-size: 4rem;
}

@media screen and (max-width: 1024px) {
    .bg-purple h4 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 500px) {
    .bg-purple h4 {
        font-size: 2rem;
    }
}

.bg-testimonial h4 {
    font-size: 3rem;
    color: #fff;
}

.bg-testimonial p {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}


/* ==========================================================================
   LISTS
   ========================================================================== */

/* Checkmark list */
.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin-left: 1em;
}

.checkmark-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    padding-bottom: 1em;
}

.checkmark-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9%;
    width: 24px;
    height: 24px;
    background-image: url(/wp-content/uploads/2024/07/checked.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/* Partner+ bullet list */
ul.bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.bullet-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

svg.bullet-icon {
    margin-right: 0.5rem;
    fill: none;
    stroke: #d25785;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.03px;
    max-width: 50px;
}

/* 4M4H list */
.list-4m4h-container {
    margin-left: 2rem;
    margin-right: 2rem;
}

.list-4m4h li {
    padding: 1.3rem 0;
    font-size: 2.2rem;
    border-bottom: 1px solid #231F21;
}

/* Single column responsive list (used on 4M4H + 4M4PA pages) */
.list-4m4h-columns {
    width: 75%;
}

@media (max-width: 768px) {
    .list-4m4h-columns {
        width: 90%;
    }
}

@media (max-width: 450px) {
    .list-4m4h-columns {
        width: 100%;
    }
}


/* ==========================================================================
   MEDIA / IMAGE COMPONENTS
   ========================================================================== */

.rounded-2x3 img {
    border-radius: 3rem;
    margin-bottom: 10px;
}

.blog-embed-container {
    max-width: 60%;
    text-align: center;
    margin: 0 auto;
}

.health-headshots {
    max-width: 300px;
}

.health-headshots figcaption {
    text-align: center;
}

.health-headshots img {
    border-radius: 3rem;
    box-shadow: 10px 10px 15px 0 #888888;
}

.health-blog-cont {
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.8rem;
}

.health-blog-cont img {
    border-radius: 3rem;
    margin-bottom: 2rem;
    box-shadow: 10px 10px 15px 0 #888888;
}

@media screen and (max-width: 780px) {
    .health-blog-cont {
        font-size: 2.2rem;
    }
}

/* Vimeo mobile embed */
.vimeo-embed-mob {
    padding: 75% 0 0 0;
    position: relative;
}

@media screen and (max-width: 1500px) {
    .vimeo-embed-mob {
        padding: 100% 0 0 0;
    }
}

@media screen and (max-width: 1200px) {
    .vimeo-embed-mob {
        padding: 125% 0 0 0;
    }
}

@media screen and (max-width: 781px) {
    .vimeo-embed-mob {
        padding: 90% 0 0 0;
    }
}


/* ==========================================================================
   PEOPLE / TEAM
   ========================================================================== */

.health-bios {
    max-width: 400px;
    font-size: 18px;
}

.pa-bios {
    font-size: 16px;
}

.health-jtitles {
    max-width: 400px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5em;
}

/* Single person page */
.single .details h5 {
    font-size: 2rem;
}

/* Bio preview with fade */
.bio-preview {
    position: relative;
    height: 160px;
    overflow: hidden;
}

p.bio-preview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.bio-preview p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 781px) {
    .bio-preview {
        height: auto;
    }
}


/* ==========================================================================
   CO-OP PAGE COMPONENTS
   ========================================================================== */

.co-op-header-h2 {
    font-size: 3em;
    line-height: 1.45;
    text-shadow: 0 1px 0 #000;
    color: #1f4494;
    font-family: 'proxima-nova', sans-serif !important;
    font-weight: 700;
}

.blue-gradient-bg {
    background-image: linear-gradient(to right, #69c7c8, #08b6de);
    background-repeat: repeat-x;
}

.pink-gradient-bg {
    background-image: linear-gradient(to right, #1f4494, #d45180);
    background-repeat: repeat-x;
}

.co-op-stat-image {
    margin-bottom: 15px;
}

@media (max-width: 781px) {
    .co-op-stat-image {
        max-width: 150px;
    }
}

.co-op-partners-logo {
    max-width: 345px;
}

@media (max-width: 781px) {
    .co-op-partners-logo {
        max-width: 125px;
    }
}

.package-card-container {
    display: flex;
    justify-content: center;
}

.package-card {
    max-width: 55%;
    margin: 0 auto;
}

@media (max-width: 1440px) and (min-width: 1024px) {
    .package-card {
        max-width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 425px) {
    .package-card {
        max-width: 80%;
    }
}

@media (max-width: 425px) {
    .package-card {
        max-width: 100%;
    }
}

.date-color-background {
    flex-basis: 15%;
    height: 200px;
    font-size: 1.85em;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

@media (max-width: 1024px) and (min-width: 425px) {
    .date-color-background {
        font-size: 1.1em;
    }
}

@media (max-width: 781px) {
    .date-color-background {
        height: 75px;
    }
}

.co-op-full-width-row {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    color: white;
}

.co-op-fullc-date {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

/* Co-op gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 1.5rem;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 4;
    height: 100%;
    width: 100%;
    background-image: url("/wp-content/uploads/2024/06/J13190_Hassle_Free_Meals_Co-Op_Screen.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0.8rem;
}

.gallery__item--2 {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 5;
    background-color: #57c2b9;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
}

.gallery__item--3 {
    grid-column-start: 6;
    grid-column-end: 8;
    grid-row-start: 1;
    grid-row-end: 5;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
    background-image: url("/wp-content/uploads/2024/06/Smart_Holiday_Shopping_Co-op_November_2022.png");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery__item--4 {
    grid-column-start: 8;
    grid-column-end: 9;
    grid-row-start: 2;
    grid-row-end: 5;
    background-color: #1f4494;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
}

.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 4;
    grid-row-end: 8;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
    background-image: url("/wp-content/uploads/2024/06/J13296_Home_Improvement_with_Chip_Wade_Co-Op_Screen.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery__item--6 {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 5;
    grid-row-end: 9;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
    background-image: url("/wp-content/uploads/2024/06/single-talent-woman.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery__item--7 {
    grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 5;
    grid-row-end: 9;
    background-image: url("/wp-content/uploads/2024/06/J11413D_Kia_EV_101_Co-Op_Screen.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.8rem;
}


/* ==========================================================================
   PROMO / EVENT COMPONENTS (Marcom Summit)
   ========================================================================== */

.promo-hero {
    background: url(/wp-content/uploads/2024/10/marcom-summit-hero-min.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6em 2em;
}

#promo-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-hero-logo {
    margin-bottom: 3em;
    width: clamp(200px, 32vw, 350px);
}

#promo-hero h1 {
    margin-bottom: 0.5em;
    max-width: 1000px;
    font-family: rift, sans-serif;
    font-weight: bold;
    font-size: clamp(55px, 5vw, 80px);
}

#promo-hero p {
    margin-bottom: 4em;
    font-size: 1.2em;
    max-width: 800px;
}

.promo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2em 0;
}

.promo-emphasize {
    font-size: 1.5em;
}

.promo-container a {
    color: #d45180;
    font-weight: bold;
}

.promo-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-image {
    flex: 0 0 75px;
    display: none;
}

.promo-image .image {
    width: 100%;
    height: auto;
    min-width: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.promo-row .date {
    font-weight: bold;
    font-size: 1.5em;
    flex: 0 0 120px;
    text-align: center;
    line-height: 1.2em;
}

.promo-row .text {
    max-width: 600px;
    flex-grow: 1;
}

@media screen and (max-width: 781px) {
    .promo-mobile-text {
        font-size: 1.4em;
    }

    .promo-row {
        display: flex;
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }

    .promo-row .date {
        flex: 0 0 0;
    }

    .promo-row .text {
        max-width: 100%;
        width: 100%;
        font-size: 1.2em;
    }
}

/* Marcom deal cards */
.marcom-deal-container {
    margin-left: 0;
    padding-left: 0;
}

.marcom-deal {
    background: linear-gradient(130deg, #1f4494, #00b4e0);
    height: 550px;
    border-radius: 0 2em 2em 0;
    padding: 0 49px;
    margin-bottom: 15px;
    width: auto;
}

.marcom-deal h3 {
    color: white;
    text-align: center;
    font-size: clamp(30px, 4vw, 100px);
    margin: 0.25em 0;
}

.marcom-deal p {
    color: white;
    text-align: center;
    font-size: clamp(16px, 3vw, 25px);
    padding: 25px 0 0 0;
    margin: 0;
}

.marcom-deal hr {
    width: 100%;
    height: 8px;
    background: #fff;
    border: none;
    border-radius: 5px;
    padding-top: 10px;
}

@media (max-width: 1024px) and (min-width: 781px) {
    .marcom-deal h3 {
        font-size: clamp(20px, 5vw, 70px);
    }
}

@media screen and (max-width: 780px) {
    .marcom-deal {
        background-color: #1F4494;
        height: 450px;
        border-radius: 0 2em 2em 0;
        padding: 0 49px;
    }

    .marcom-deal h3 {
        font-size: clamp(30px, 10vw, 120px);
    }

    .marcom-deal p {
        font-size: clamp(20px, 2vw, 25px);
    }
}

@media screen and (max-width: 375px) {
    .marcom-deal h3 {
        font-size: clamp(28px, 4vw, 70px);
    }

    .marcom-deal p {
        font-size: clamp(16px, 3vw, 25px);
    }
}

/* Marcom checklist */
.checkmark-list-container-marcom {
    display: flex;
    justify-content: center;
}

.checkmark-list-container-marcom li {
    list-style-type: none;
    font-size: clamp(16px, 4vw, 30px);
}

.list-container-marcom-left {
    padding: 0 18rem 0 0;
}

.list-container-marcom-middle {
    padding: 0 15rem 0 0;
}

@media screen and (max-width: 1440px) {
    .list-container-marcom-left,
    .list-container-marcom-middle {
        padding: 0;
    }
}

@media screen and (max-width: 780px) {
    .checkmark-list-container-marcom li {
        font-size: clamp(14px, 3vw, 30px);
    }

    .checkmark-list-container-marcom {
        flex-direction: column;
    }
}

/* Jake Marcom presenter section */
.jake-marcom-h2 {
    font-size: 1.3em;
    color: #D45180;
    font-style: italic;
}

.jake-marcom-big-text {
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 1em;
}

.jake-marcom-more-info {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.jake-marcom-more-info .arrow-static {
    display: inline-block;
    color: black;
    transition: transform 0.2s ease;
}

.jake-marcom-more-info:hover .arrow-static {
    transform: translateY(4px);
}

/* Countdown timer */
.countdown-container {
    padding: 0.5em;
    background: #00b4e0;
}

.countdown {
    text-align: center;
    color: #fff;
}

.countdown div {
    display: inline-block;
    margin: 0 10px;
}

.countdown div span {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2em;
}

.countdown .label {
    font-size: 1.6rem;
}

@media (max-width: 48rem) {
    .countdown div span {
        font-size: 1.5rem;
    }

    .label {
        font-size: 0.875rem;
    }
}

@media (max-width: 30rem) {
    .countdown div {
        margin: 0 0.25rem;
    }

    .countdown div span {
        font-size: 1.25rem;
    }

    .label {
        font-size: 0.75rem;
    }
}

/* Dot pulse animation indicator */
span.dot-effect {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px 0;
    background: #5CD8D5;
    border-radius: 100%;
    flex-shrink: 0;
    margin-right: 1em;
    animation: pulse-shadow 3s 2s linear infinite;
}

span.dot-effect:before {
    animation: pulse 3s 1s linear infinite;
}

span.dot-effect:after,
span.dot-effect:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #D55182;
    border-radius: 100%;
    left: 0;
}


/* ==========================================================================
   POPUP CONTENT STYLES
   ========================================================================== */

.popup H1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.popup H2 {
    font-size: 3rem;
}

.popup p {
    font-size: 20px;
}

.popup .small-text {
    font-size: 0.8rem;
}

.popup .pink-text {
    color: #D45180;
}

.popup .white-text {
    color: #fff;
}

.popup .D-blue-background {
    background-color: #1F4494 !important;
}

.popup .center-left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    word-wrap: break-word;
}


/* ==========================================================================
   AWARDS GRID (About Us page)
   ========================================================================== */

.awards-section {
    padding: 50px;
    text-align: center;
}

.award-section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.award-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 2em 1em 1em;
}

.award {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 180px;
}

.award:hover {
    transform: scale(1.05);
}

.award img {
    max-width: 250px;
    width: 70%;
    height: auto;
    margin-bottom: 10px;
}

.award h3 {
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.award:hover h3 {
    transform: translateY(-15px);
}

.award p {
    position: relative;
    font-size: 1.5rem;
    bottom: 20px;
    transform: scale(0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #333;
    font-weight: bold;
}

.award:hover p {
    opacity: 1;
    transform: scale(1);
}

.award.no-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}


/* ==========================================================================
   AMP PRODUCT PAGE COMPONENTS
   ========================================================================== */

.amp-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    color: white;
    text-align: center;
    overflow: hidden;
}

.amp-hero-title {
    font-size: 3rem;
    margin: 0;
    padding: 0 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .amp-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .amp-hero-title {
        font-size: 1.8rem;
    }
}

.jump-to-form-cta {
    text-align: center;
    margin: 2rem 0;
}

.jump-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #0073e6;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.jump-button:hover {
    background-color: #005bb5;
}

.amp-price-info {
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 3rem 0;
    background: linear-gradient(45deg, #1F4494, #00B4E0);
    color: #fff;
}

.amp-price-info h2 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amp-price {
    font-size: 5.5rem;
    font-weight: 800;
}

.amp-price.animate-bounce {
    animation: bounce-glow 0.6s ease;
}

.process-overview {
    padding: 3rem 1rem;
    text-align: center;
}

.process-overview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-overview h3 {
    margin-top: 0 !important;
}

.process-list {
    counter-reset: step;
    margin: 0 auto;
    padding: 0;
}

.process-overview .process-list li {
    counter-increment: step;
    list-style: none;
    background-color: #fff;
    border: 1px solid #000;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.process-list li::before {
    content: counter(step);
    position: absolute;
    top: 50%;
    left: -4em;
    transform: translateY(-50%);
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    padding: 0;
    line-height: 1;
}

.process-list h3 {
    margin-left: 3rem;
    margin-top: 0;
}

.process-list h4 {
    margin-top: 0;
    margin-bottom: 0.5em !important;
}

.process-overview .process-list p {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .process-list li::before {
        display: none;
    }
}

/* AMP talent sidebar */
.amp-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 33.33%;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.amp-sidebar.amp-open {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .amp-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .amp-sidebar {
        width: 100%;
    }
}

.amp-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 1em;
}

.amp-sidebar-header h2 {
    font-size: 2em;
    margin: 1em 0;
    color: #1f4494;
}

#close-sidebar {
    font-size: 1em;
    border: none;
    cursor: pointer;
    background: #ebebeb;
    padding: 0 0.5em 0.2em;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#close-sidebar:hover {
    background-color: #d6d6d6;
}

@media (max-width: 991px) {
    #close-sidebar {
        font-size: 2em;
    }

    .amp-sidebar {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

.amp-talent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-bottom: 15px;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.amp-sidebar.viewing-details .amp-talent-list {
    display: none;
}

.amp-talent-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    border: 1px solid #ddd;
}

.amp-talent-item:hover {
    background: #f5f5f5;
}

.amp-talent-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    object-position: center;
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .amp-talent-item {
        padding: 16px;
        font-size: 18px;
    }

    .amp-talent-item img {
        width: 70px;
        height: 70px;
    }
}

.amp-talent-detail {
    position: absolute;
    width: 100%;
    background: white;
    padding: 20px;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
    display: none;
}

.amp-sidebar.viewing-details .amp-talent-detail {
    display: block;
    transform: translateX(0);
}

.amp-talent-detail.hidden { display: none; }

#back-to-list {
    margin-bottom: 10px;
    border: none;
    color: #fff;
    cursor: pointer;
    background: #00b4e0;
    padding: 0.1em 0.5em 0.2em;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

#back-to-list:hover {
    background: #039cc1;
}

#talent-detail {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-sizing: border-box;
}

#talent-sidebar::-webkit-scrollbar {
    width: 8px;
}

#talent-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

#talent-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

h2#talent-name {
    font-size: 2em;
}

.talent-title {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
    font-weight: 400;
    font-style: italic;
}

.talent-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Talent bio sidebar content */
#talent-bio h4 {
    margin: 0.8em 0;
}

#talent-bio p + p {
    margin-top: 0.5em;
}

#talent-bio ul > li {
    list-style: disc;
}

#talent-bio ul {
    padding-left: 2em;
}

.amp-no-scroll {
    overflow: hidden;
    height: 100vh;
}

body.amp-sidebar-open {
    width: 100%;
    height: 100%;
    overflow: visible;
    touch-action: none;
}

/* Image zoom overlay (lightbox) */
.image-zoom-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.image-zoom-overlay.show {
    display: flex;
}

.image-lightbox.hidden { display: none; }

button#open-talent-sidebar {
    bottom: 20px;
    right: 20px;
    background: #00b4e0;
    color: white;
    font-family: 'sofia-pro';
    font-weight: 700;
    text-transform: capitalize;
    font-size: 2rem !important;
    border-radius: 4em;
    padding: 0.2em 1em 0.5em !important;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 10px;
    min-width: 175px;
    width: 100%;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

#open-talent-sidebar .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    position: relative;
    transition: transform 0.3s ease;
}

#open-talent-sidebar .icon-hamburger {
    transition: transform 0.3s ease;
}

button#open-talent-sidebar:hover .icon-hamburger {
    transform: translateX(-4px);
}
