/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:#e8e8e8    ;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}








/* ===== VIDEO SECTION ===== */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #e8e8e8;
    overflow: visible;
}

.video-collapsible-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toggle-video-button {
    width: 100%;
    padding: 20px 40px;
    height: 60px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #0cc0df 0%, #0aa0c0 100%);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 20px 20px 60px rgba(12, 192, 223, 0.3),
                -20px -20px 60px rgba(255, 255, 255, 0.5);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.toggle-video-button.expanded {
    width: 250px;
    padding: 20px 30px;
    height: 60px;
    margin: 0 auto;
}

.button-text {
    transition: opacity 0.3s ease;
}

.toggle-video-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.toggle-video-button:hover::before {
    left: 100%;
}

.toggle-video-button:hover {
    transform: translateY(-3px);
    box-shadow: 25px 25px 70px rgba(12, 192, 223, 0.4),
                -25px -25px 70px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #0aa0c0 0%, #0880a0 100%);
}

.toggle-video-button:active {
    transform: translateY(-1px);
}

.toggle-video-button.expanded {
    border-radius: 20px;
    margin-bottom: 0;
}

.button-icon {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-video-button.expanded .button-icon {
    transform: rotate(180deg);
}

.video-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.video-content.expanded {
    max-height: 1000px;
    padding: 50px 30px 60px 30px;
    overflow: visible;
}

.video-content video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.video-content.expanded video {
    opacity: 1;
}

.video-content video::-webkit-media-controls-panel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-content:hover video::-webkit-media-controls-panel {
    opacity: 1;
}

.video-content video:focus::-webkit-media-controls-panel {
    opacity: 1;
}

/* ===== PACKAGE LAYOUT & CONTAINER ===== */
.packages-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.packages-title {
    font-size: 5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: -10px;
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===== PACKAGE CARD BASE STYLES ===== */
.card {
    width: 380px;
    height: 580px;
    border-radius: 60px;
    background: #e0e0e0;
    box-shadow: 30px 30px 60px #bebebe,
               -30px -30px 60px #ffffff;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* ===== PACKAGE CARD ANIMATIONS & EFFECTS ===== */
.card::before {
    opacity: 0;
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 120%;
    background: linear-gradient(#0cc0df, #12bcdb);
    transition: opacity 1000ms ease-in-out;
    animation: rotation_9018 8000ms infinite linear;
    animation-play-state: paused;
    z-index: 1;
}

.card-glow {
    opacity: 0;
    position: absolute;
    display: block;
    width: 60%;
    height: 130%;
    background: linear-gradient(#0cc0df, #0bb0ce);
    filter: blur(15px);
    transition: opacity 1000ms ease-in-out;
    animation: rotation_9018 8000ms infinite linear;
    animation-play-state: paused;
    z-index: 0;
}

.card:hover::before,
.card.selected::before {
    opacity: 1;
    animation-play-state: running;
}

.card:hover .card-glow,
.card.selected .card-glow {
    opacity: 1;
    animation-play-state: running;
}

.card-overlay {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    left: 50%;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: #e0e0e0;
    border-radius: 60px;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: all 5s ease;
}

.card-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    z-index: -1;
}

.card-content {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 3;
}

@keyframes rotation_9018 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 3;
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* Reorder elements on desktop: button before features */
.features-divider {
    order: 2;
}

.features-list {
    order: 3;
}

/* ===== PACKAGE CARD CONTENT & TYPOGRAPHY ===== */
.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a4847;
    margin-bottom: 8px;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 8px;
}

.price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* ===== PACKAGE CTA BUTTONS ===== */
.cta-button {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(12, 192, 223, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 1s ease, box-shadow 1s ease;
    margin-bottom: 25px;
    background: rgba(12, 192, 223, 0.05);
    backdrop-filter: blur(10px);
    color: #4a4847;
    position: relative;
    overflow: hidden;
    order: 1; /* Desktop: button before features */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.2);
    background: rgba(12, 192, 223, 0.1);
}

/* ===== PACKAGE FEATURES LIST ===== */
.features-divider {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.features-toggle-icon {
    display: none;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.features-divider.collapsed .features-toggle-icon {
    transform: rotate(-90deg);
}

.features-divider::before,
.features-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #bbb;
    margin: 0 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #6b6866;
    line-height: 1.4;
}

.checkmark {
    color: #0cc0df;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}


/* ===== PACKAGE CARD SELECTION STATES ===== */
.card.featured {
    position: relative;
    width: 400px;
    height: 620px;
}

.card-selection-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 60px;
    pointer-events: none;
    z-index: 10;
    transition: border-color 0.3s ease;
}

.card.selected .card-selection-border {
    border-color: #a5d34a;
}

.card.selected .cta-button {
    background: #a5d34a !important;
    color: #000 !important;
    border: 1px solid #a5d34a !important;
    transform: translateY(2px) !important;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.08s ease, box-shadow 0.3s ease !important;
}

.card.selected .checkmark {
    color: #a5d34a;
}

.card.selected::before {
    background: linear-gradient(#a5d34a, #8bc34a);
}

.card.selected .card-glow {
    background: linear-gradient(#a5d34a, #8bc34a);
}

.card.selected .card-overlay {
    width: 94%;
    height: 96%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== PACKAGE BADGES & SPECIAL ELEMENTS ===== */
.consultation-feature {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center; /* Center the badge on desktop */
    justify-content: center; /* Center flex items */
}

.consultation-feature .checkmark {
    display: none;
}

.consultation-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #0cc0df 0%, #0a7a8f 100%);
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(12, 192, 223, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #a5d34a 0%, #8bc34a 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 35px 8px 40px;
    transform: rotate(45deg) translate(40px, -8px);
    box-shadow: 0 2px 8px rgba(165, 211, 74, 1);
    z-index: 15;
    width: 140px;
    text-align: center;
    overflow: hidden;
}

.card.selected .consultation-badge {
    background: linear-gradient(135deg, #a5d34a 0%, #8bc34a 100%) !important;
    color: #000 !important;
    box-shadow: 0 2px 8px rgba(165, 211, 74, 0.3) !important;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}



























/* Add-on Cards Styles */

/* Neumorphic Toggle Switch */
.label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #394a56;
    pointer-events: none;
}

.label-text {
    margin-left: 16px;
}

.toggle {
    isolation: isolate;
    position: relative;
    height: 30px;
    width: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -8px -4px 8px 0px #ffffff,
        8px 4px 12px 0px #d1d9e6,
        4px 4px 4px 0px #d1d9e6 inset,
        -4px -4px 4px 0px #ffffff inset;
    pointer-events: none;
}

.toggle-state {
    display: none;
    pointer-events: none;
}

.indicator {
    height: 100%;
    width: 200%;
    background: #ecf0f3;
    border-radius: 15px;
    transform: translate3d(-75%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35);
    box-shadow: -8px -4px 8px 0px #ffffff,
        8px 4px 12px 0px #d1d9e6;
}

.toggle-state:checked ~ .indicator {
    transform: translate3d(25%, 0, 0);
}

/* Basic Toggle Add-on Cards */
.addon-basic-card {
    width: 280px;
    height: 320px;
    border-radius: 30px;
    background: #e8e8e8;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(255, 255, 255, 1) -12px -12px 25px -5px inset, 
    rgba(0, 0, 0, 0.4) 12px 12px 25px -5px inset;
}
/*rgba(0, 0, 0, 0.6) 12px 12px 25px -5px inset;*/

.addon-basic-card.selected {
    position: relative;
    background: linear-gradient(90deg, rgba(152, 255, 100, 0.5), rgba(125, 216, 125, 0.4), rgba(152, 255, 100, 0.6), rgba(125, 216, 125, 0.4), rgba(152, 255, 100, 0.7));
    background-size: 200% 100%;
    animation: movingGreen 8s ease infinite;
    box-shadow: rgb(213, 254, 212) -12px -12px 25px -5px inset, 
    rgba(2, 51, 0, 0.4) 12px 12px 25px -5px inset;
}

.addon-basic-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 30px;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

@keyframes movingGreen {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes movingOrange {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.addon-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.addon-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a4847;
    margin-bottom: 8px;
}

.addon-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3d3d3d;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.price-unit {
    font-size: 0.75rem;
    font-weight: 400;
    color: #718096;
    margin-top: 2px;
}

.addon-card-description {
    color: #6b6866;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.addon-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-card-footer .quantity-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

/* Glassmorphic Cards */
.addon-glass-card {
    position: relative;
    width: 280px;
    height: 320px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    cursor: pointer;
    transition: all 0.3s ease, background 0.8s ease;
}

.addon-glass-card .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 270px;
    height: 310px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.addon-glass-card .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #08080831;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
    transition: background-color 0.8s ease;
}

.addon-glass-card:hover .blob {
    background-color: #98ff64;
}

.addon-glass-card.selected {
    background: #7ed552d0;
}

.addon-glass-card.selected .blob {
    background-color: #98ff64;
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

/* Fast Track Card */
.addon-fast-track-card {
    width: 800px;
    height: 150px;
    border-radius: 30px;
    background: #e8e8e8;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(255, 255, 255, 1) -12px -12px 25px -5px inset, 
    rgba(0, 0, 0, 0.4) 12px 12px 25px -5px inset;
}

.addon-fast-track-card .addon-card-header {
    transform: translate(5px, 4px);
    transition: transform 0.3s ease;
}

.addon-fast-track-card .addon-card-description {
    transform: translate(5px, 4px);
    transition: transform 0.3s ease;
}

.addon-fast-track-card .addon-card-footer {
    position: absolute;
    bottom: 25px;
    right: 25px;
    transition: transform 0.3s ease;
}

.addon-fast-track-card.selected {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.5), rgba(255, 140, 0, 0.7), rgba(255, 165, 0, 0.6), rgba(255, 140, 0, 0.7), rgba(255, 165, 0, 0.7));
    background-size: 200% 100%;
    animation: movingOrange 3s ease infinite;
    box-shadow: rgba(139, 69, 19, 0.6) -12px -12px 25px -5px inset, 
    rgba(255, 218, 185, 1) 12px 12px 25px -5px inset,
    20px 15px 35px rgba(175, 96, 0, 0.73);
}

.addon-fast-track-card.selected .addon-card-header {
    transform: translate(-5px, -4px);
    transition: transform 0.3s ease;
}

.addon-fast-track-card.selected .addon-card-description {
    transform: translate(-5px, -4px);
    transition: transform 0.3s ease;
}

.addon-fast-track-card.selected .addon-card-footer {
    transform: translate(-5px, -4px);
    transition: transform 0.3s ease;
}

.addon-fast-track-card.selected .toggle {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    box-shadow: -8px -4px 8px 0px rgba(255, 218, 185, 0.8), 
                8px 4px 12px 0px rgba(172, 105, 24, 0.735), 
                4px 4px 4px 0px rgba(133, 56, 0, 0.4) inset, 
                -4px -4px 4px 0px rgba(255, 218, 185, 0.8) inset;
}

.addon-fast-track-card.selected .toggle .indicator {
    background: linear-gradient(135deg, #fdc998, #ffbe89);
    box-shadow: -8px -4px 8px 0px rgb(250, 179, 116), 
                8px 4px 12px 0px rgb(218, 154, 108);
}

.lightning-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.472);
    border-radius: 50%;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 32px;
    margin-left: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.508);
}

/* Quantity Selector Styles */

.quantity-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.quantity-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 8px;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.increment-btn:hover {
    background: #dcfce7;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.increment-btn:hover .quantity-icon {
    color: #22c55e;
}

.decrement-btn:hover {
    background: #fee2e2;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.decrement-btn:hover .quantity-icon {
    color: #ef4444;
}

/* Media Services Flip Card */
.addon-media-card {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto 60px auto;
    perspective: 1000px;
    position: relative;
    z-index: 100;
}

.media-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.media-tab {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #4a90e2;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.media-tab:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Images tab active - matches front gradient */
.media-tab.active[data-side="front"] {
    background: linear-gradient(135deg, #0077ff, #4a9eff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.4);
}

/* Videos tab active - matches back gradient */
.media-tab.active[data-side="back"] {
    background: linear-gradient(135deg, #2143ff, #0880f7);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 67, 255, 0.4);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-inner.flipped {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-front {
    background: linear-gradient(135deg, #0077ff, #4a9eff, #49a0f8);
    box-shadow: 
    rgba(0, 0, 0, 0.2) -10px -10px 20px -5px inset,
    rgba(255, 255, 255, 0.406) 10px 10px 20px -5px inset,
    20px 20px 35px rgba(4, 96, 200, 0.562);
}

.flip-card-back {
    background: linear-gradient(135deg, #2143ff, #0880f7, #0849e0);
    transform: rotateY(180deg);
    box-shadow: 
        rgba(0, 0, 0, 0.356) -10px -10px 20px -5px inset,
        rgba(255, 255, 255, 0.512) 10px 10px 20px -5px inset,
        20px 20px 35px rgba(23, 60, 160, 0.507);
}

.flip-card-front h3, .flip-card-back h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.media-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.media-service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Remove hover animation for media service items */

/* Selected state for media service items with quantity > 0 */
.media-service-item:has(.quantity-input.has-value) {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-info {
    flex: 1;
    text-align: left;
}

.service-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-price {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 700;
}

.service-price .price-unit {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.media-service-item .quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-service-item .quantity-btn {
    width: 28px;
    height: 28px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-service-item .quantity-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.media-service-item .quantity-icon {
    width: 12px;
    height: 12px;
    color: white;
}

.media-service-item .quantity-input {
    width: 40px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.media-service-item .quantity-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.media-service-item .quantity-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.media-service-item .quantity-input.has-value {
    color: #003cff;
    text-shadow: 0 0 8px rgba(137, 171, 255, 0.834);
}

.media-service-item .increment-btn:hover {
    background: #dcfce7;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.media-service-item .increment-btn:hover .quantity-icon {
    color: #22c55e;
}

.media-service-item .decrement-btn:hover {
    background: #fee2e2;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.media-service-item .decrement-btn:hover .quantity-icon {
    color: #ef4444;
}

/* Remove selected state for media card - no movement or glow */

/* Additional Pages Card - Wide Layout Override */
.addon-glass-card[data-addon="pages"] {
    width: 800px;
    height: 150px;
    margin: 0 auto;
}

.addon-glass-card[data-addon="pages"] .blob {
    width: 70%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: borderOrbit 5s linear infinite;
}

@keyframes borderOrbit {
    0% {
        transform: translate(-50%, -50%) translateX(370px) translateY(-45px);
    }
    20% {
        transform: translate(-50%, -50%) translateX(370px) translateY(45px);
    }
    50% {
        transform: translate(-50%, -50%) translateX(-370px) translateY(45px);
    }
    80% {
        transform: translate(-50%, -50%) translateX(-370px) translateY(-45px);
    }
    100% {
        transform: translate(-50%, -50%) translateX(370px) translateY(-45px);
    }
}

.addon-glass-card[data-addon="pages"] .bg {
    width: 790px;
    height: 140px;
    padding: 20px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.addon-glass-card[data-addon="pages"] .addon-card-header {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.addon-glass-card[data-addon="pages"] .addon-card-description {
    margin-bottom: 0;
}

.addon-glass-card[data-addon="pages"] .addon-card-price {
    margin-right: 20px;
}

.addon-glass-card[data-addon="pages"] .addon-card-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.addon-glass-card[data-addon="pages"] .quantity-label {
    font-size: 12px;
    margin: 0;
}

.addon-glass-card[data-addon="pages"] {
    margin-bottom: 80px;
}

/* Additional Pages Card - Custom Layout */
.addon-glass-card[data-addon="pages"] .addon-card-description {
    position: absolute;
    top: 20px;
    right: 25px;
    text-align: right;
    max-width: 400px;
    margin: 0;
    white-space: nowrap;
    font-size: 0.9rem;
}

.addon-glass-card[data-addon="pages"] .addon-card-title {
    position: absolute;
    top: 20px;
    left: 25px;
    margin: 0;
}

.addon-glass-card[data-addon="pages"] .addon-card-price {
    position: absolute;
    bottom: 20px;
    left: 25px;
    margin: 0;
}

.addon-glass-card[data-addon="pages"] .addon-card-footer {
    position: absolute;
    bottom: 20px;
    right: 25px;
    margin: 0;
}

.quantity-btn:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
}

.decrement-btn {
    border-radius: 8px 0 0 8px;
    border-right: 0;
}

.increment-btn {
    border-radius: 0 8px 8px 0;
    border-left: 0;
}

.quantity-input {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-left: 0;
    border-right: 0;
    height: 32px;
    width: 50px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    outline: none;
}

.quantity-input:focus {
    ring: 2px;
    ring-color: #3b82f6;
    border-color: #3b82f6;
}

.quantity-input.has-value {
    color: #22c55e;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

.quantity-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.addon-fast-track-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 30px;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

/* ===== ENTERPRISE ADD-ONS SECTION ===== */
.enterprise-addons-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 60px 0;
    padding: 0 20px;
}

.enterprise-addons-section.visible {
    display: block;
    opacity: 1;
}

.enterprise-addons-header {
    text-align: center;
    margin-bottom: 50px;
}

.enterprise-addons-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.enterprise-addons-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== ENTERPRISE CARD STYLING ===== */
.addon-enterprise-card {
    position: relative;
    width: 280px;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1111;
}

.addon-enterprise-card .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 270px;
    height: 310px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.addon-enterprise-card .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #08080831;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
    transition: background-color 0.8s ease;
}

.addon-enterprise-card:hover .blob {
    background-color: #FFD700;
}

.addon-enterprise-card.selected {
    background: #ffd900ae; /* Solid yellow background for selected enterprise cards */
    box-shadow: 20px 20px 60px rgba(255, 215, 0, 0.3), -20px -20px 60px #ffffff;
    transition: 0.8s ease; /* Smooth fade into yellow */
}

.addon-enterprise-card.selected .blob {
    background-color: #FFD700;
}

.enterprise-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1;
}

.addon-enterprise-card .addon-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

.addon-enterprise-card .addon-card-description {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterprise-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.addon-enterprise-card:hover .enterprise-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

.addon-enterprise-card.selected .enterprise-badge {
    background: linear-gradient(135deg, #E5E4E2, #FFD700);
    color: #333;
    box-shadow: 0 4px 8px rgba(229, 228, 226, 0.5);
}

/* ===== ENTERPRISE CARD ANIMATIONS ===== */


/* ===== RESPONSIVE DESIGN FOR ENTERPRISE GRID ===== */
@media (max-width: 1400px) {
    .enterprise-addons-grid {
        grid-template-columns: repeat(3, 280px);
    }
}

@media (max-width: 1000px) {
    .enterprise-addons-grid {
        grid-template-columns: repeat(2, 280px);
    }
}

@media (max-width: 700px) {
    .enterprise-addons-grid {
        grid-template-columns: 280px;
    }
}

/* ===== ENTERPRISE ANIMATED CHECKBOX STYLING ===== *//* From Uiverse.io by risabbir */
.checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}

.checkbox {
  display: none;
}

.checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-flip {
  width: 60px;
  height: 60px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.8s ease; /* Slower animation for enterprise checkboxes */
}

.checkbox-front,
.checkbox-back {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  backface-visibility: hidden;
  transition: transform 0.8s ease; /* Slower flip animation for enterprise checkboxes */
}

.checkbox-front {
  background: linear-gradient(135deg, #a5d34a, #8bc34a);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: rotateY(0deg);
}

.checkbox-back {
  background: linear-gradient(135deg, #fff700, #ffb700);
  box-shadow: 0 2px 4px rgba(255, 157, 0, 0.1);
  transform: rotateY(180deg);
}

.checkbox-wrapper:hover .checkbox-flip {
  transform: scale(1.1);
  transition: transform 0.8s ease-out; /* Slower hover scale animation for enterprise checkboxes */
}

.checkbox:checked + .checkbox-label .checkbox-front {
  transform: rotateY(180deg);
}

.checkbox:checked + .checkbox-label .checkbox-back {
  transform: rotateY(0deg);
}

.checkbox:focus + .checkbox-label .checkbox-flip {
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.7),
    0 0 20px rgba(255, 215, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.icon-path {
  stroke: white;
  stroke-width: 2;
  fill: transparent;
}

/* Font Awesome icon styling for enterprise features */
.enterprise-icon i {
    color: #ffd700; /* Gold color */
    font-size: 2rem;
    transition: color 0.8s ease; /* Slower color transition for enterprise cards */
}

/* Inactive state - lighter green for unselected cards */
.addon-enterprise-card:not(.selected) .enterprise-icon i {
    color: #00000048; /* Lighter green for inactive state */
}

/* Enterprise card hover and selection effects */
.addon-enterprise-card {
    transition: transform 0.8s ease; /* Slower animation for enterprise cards */
    transform: translateY(0);
    cursor: pointer;
}

/* Hover effect - pop out */
.addon-enterprise-card:hover {
    transform: translateY(-8px);
}

/* Selected state - embed down */
.addon-enterprise-card.selected {
    transform: translateY(4px);
    box-shadow: 4px rgba(255, 238, 0);
    z-index: 1; /* Lower z-index so selected cards appear behind others */
}

/* ===== ENTERPRISE SCROLL BUTTON ===== */
.enterprise-scroll-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: none; /* Hidden by default */
}

.enterprise-addons-section.visible .enterprise-scroll-button-container {
    display: block;
}

.enterprise-scroll-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ed552 0%, #5cb83d 100%);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(126, 213, 82, 0.4);
    transition: all 0.5s ease;
    position: relative;
}

.enterprise-scroll-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(126, 213, 82, 0.6);
    background: linear-gradient(135deg, #8ee562 0%, #6cc84d 100%);
}

/* Yellow state when enterprise features are selected - smooth fade */
.enterprise-scroll-button-container.has-selection .enterprise-scroll-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.5s ease;
}

.enterprise-scroll-button-container.has-selection .enterprise-scroll-button:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB733 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.enterprise-scroll-button:active {
    transform: translateY(-1px);
}

.enterprise-scroll-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* ===== ENTERPRISE CHECKOUT STYLING ===== */
.enterprise-checkout {
    /* Match regular checkout styling */
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.enterprise-features-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.enterprise-features-list li {
    padding: 8px 0;
    color: #333;
    font-size: 0.9rem;
}

.enterprise-features-list .no-features {
    color: #999;
    font-style: italic;
}

/* Cards Grid Layout */
.addons-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Row containers */
.addons-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

/* Fast Track Section */
.fast-track-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 20px;
}

/* Add-ons Section */
.addons-section {
    margin-top: 0;
    padding: 60px 20px;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    display: none;
}

.addons-section.visible {
    display: block;
}

.addons-header {
    text-align: center;
    margin-bottom: 40px;
}

.addons-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4a4847;
    margin-bottom: 10px;
}

.addons-header p {
    font-size: 1.1rem;
    color: #6b6866;
}

/* Maintenance Container */
.maintenance-container {
    margin: 0 auto;
    padding: 65px 0px 10px;
}

/* Maintenance Header Tab */
.maintenance-header-tab {
    width: fit-content;
    max-width: 500px;
    margin: 0 auto 0 auto;
    border-radius: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    padding: 25px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.maintenance-header-tab h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4a4847;
    margin: 0 0 8px 0;
}

.maintenance-header-tab p {
    font-size: 16px;
    color: #6b6866;
    margin: 0;
}

/* Maintenance Plans Card */
.addon-maintenance-card {
    width: 100%;
    max-width: 1000px;
    height: fit-content;
    border-radius: 20px 20px 20px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.addon-maintenance-card .blob {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 275px;
    height: 100%;
    border-radius: 20px;
    background-color: #49cbff;
    opacity: 0.2;
    filter: blur(25px);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

/* Blob positions for each plan */
.addon-maintenance-card .blob.behind-none {
    left: 16.66%;
}

.addon-maintenance-card .blob.behind-basic {
    left: 50%;
}

.addon-maintenance-card .blob.behind-pro {
    left: 83.33%;
}

/* Hover Blob */
.addon-maintenance-card .hover-blob {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 16.67%;
    width: 300px;
    height: 100%;
    border-radius: 20px;
    background-color: #00fff2b3;
    opacity: 0;
    filter: blur(25px);
    transform: translate(-50%, -50%);
    transition: all 1s ease;
    pointer-events: none;
}

.addon-maintenance-card .hover-blob.hover-none {
    left: 16.67%;
    opacity: 0.2;
}

.addon-maintenance-card .hover-blob.hover-basic {
    left: 50%;
    opacity: 0.2;
}

.addon-maintenance-card .hover-blob.hover-pro {
    left: 83.33%;
    opacity: 0.2;
}


/* Removed old header styles - now using separate tab */

.maintenance-plans {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
    align-items: stretch;
}

.maintenance-plan-card {
    flex: 1;
    max-width: 280px;
    height: 320px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    transition: transform 1s ease, box-shadow 1s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
}

.maintenance-plan-card[data-plan="none"] {
    background: #f8f9fa;
}

.maintenance-plan-card:not(.selected):hover {
    transform: translateY(-5px);
    box-shadow: 20px 20px 60px #9dacba72, -20px -20px 60px #eafbff65;
    z-index: 3;
}

/* Selected state styling for maintenance plan cards */
.maintenance-plan-card.selected {
    position: relative;
    box-shadow: none;
    transform: translateY(5px);
    z-index: 1;
}

.maintenance-plan-card.selected::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid #49cbff87;
    border-radius: 15px;
    pointer-events: none;
    z-index: 10;
}

.maintenance-plan-card:not(.selected):hover::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid #49cbff5a;
    border-radius: 15px;
    pointer-events: none;
    z-index: 10;
}

.plan-radio {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.plan-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #4a4847;
    margin: 0 0 10px 0;
}

.plan-description {
    font-size: 14px;
    color: #6b6866;
    margin: 0 0 15px 0;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 20px;
}

.plan-price .price-unit {
    font-size: 14px;
    font-weight: 500;
    color: #6b6866;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    font-size: 14px;
    color: #6b6866;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #49cbff;
    font-weight: bold;
}

/* Checkout Section */
.checkout-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid #e9ecef;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.checkout-section.visible {
    display: block;
}

.checkout-header {
    text-align: center;
    margin-bottom: 25px;
}

.checkout-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
}

.checkout-details {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-row:last-child {
    border-bottom: none;
}

.checkout-label {
    font-weight: 500;
    color: #666;
}

.checkout-value {
    font-weight: 600;
    color: #2c3e50;
}

.checkout-price {
    color: #27ae60;
    font-size: 1.1rem;
}

.checkout-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-button:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

/* Yellow state for enterprise checkout button when features are selected */
.checkout-button.has-selection {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.5s ease;
}

.checkout-button.has-selection:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB733 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.checkout-button:active {
    transform: translateY(0);
}

.checkout-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-btn-text {
    flex: 1;
    text-align: left;
}

.checkout-btn-price {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Floating Price Counter */
.floating-price-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-price-counter.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-price-counter.visible:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.price-counter-content {
    text-align: center;
}

.price-counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-counter-amount {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 3px;
}

.price-counter-monthly {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Radio Button Styles */
.radio-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.radio-input {
    display: none;
}

.radio {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 6px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: inset -1px -2px 7px #ffffff, inset 1px 2px 4px #b0b0b0;
}

.radio:focus {
    outline: 1px solid #4b0082;
}

.circle {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.radio-input:checked + .radio .circle {
    background: #5bceff91;
    border: 2px solid #ff000000;
    transform: scale(1.1);
    outline: 3px solid #e6f3ff;
}

/* Fast Track Active - Orange Accent for Price Elements */
.fast-track-active .floating-price-counter {
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.3);
}

.fast-track-active .checkout-button {
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

.fast-track-active .checkout-button:hover {
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    box-shadow: 0 12px 35px rgba(255, 149, 0, 0.4);
}

/* Keep checkout button text white when fast track is active */
.fast-track-active .checkout-button,
.fast-track-active .checkout-button .checkout-btn-text,
.fast-track-active .checkout-button .checkout-btn-price {
    color: white !important;
}

/* ===== MOBILE RESPONSIVE STYLES FOR PACKAGE CARDS ===== */

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Fix body scrolling on mobile */
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }
    
    /* Video Section Mobile */
    .video-section {
        padding: 20px 15px;
    }
    
    .video-collapsible-container {
        max-width: 100%;
    }
    
    .toggle-video-button {
        width: calc(100% - 20px);
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .toggle-video-button.expanded {
        width: 200px;
        padding: 15px 25px;
    }
    
    .video-content.expanded {
        padding: 20px 10px 40px 10px;
    }
    
    .video-content video {
        border-radius: 20px;
    }
    
    /* Package Cards Container - allow scrolling */
    .packages-container {
        min-height: 100vh;
        max-height: none;
        max-width: 100vw;
        height: auto;
        padding: 20px 0px 0px 0;
        align-items: flex-start;
    }
    
    /* Container - stack cards vertically */
    .container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
        width: 100%;
    }
    
    /* Package Cards */
    .card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        margin: 0;
    }
    
    /* Featured card (Pro Package) - override fixed height */
    .card.featured {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
    
    /* Add space below Enterprise package on mobile */
    .packages-container .card:last-child {
        margin-bottom: 80px;
    }
    
    .card-content {
        padding: 20px;
        /* Reset order on mobile - keep natural HTML order (features before button) */
    }
    
    /* Reset order on mobile to match HTML structure */
    .cta-button {
        order: 3;
    }
    
    .features-divider {
        order: 1;
    }
    
    .features-list {
        order: 2;
    }
    
    /* Package Typography */
    .package-name {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .package-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        margin-top: 20px;
        margin-bottom: 15px;
        min-height: 44px; /* Touch target */
    }
    
    /* Collapsible Features on Mobile */
    .features-divider {
        cursor: pointer;
        user-select: none;
        padding: 10px;
        margin-bottom: 0;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    
    .features-divider:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .features-toggle-icon {
        display: inline-block;
    }
    
    .features-list {
        overflow: hidden;
        opacity: 0;
        margin: 0;
        padding: 0;
        height: 0;
        will-change: height, opacity;
        transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.25s ease,
                    margin 0.25s ease;
    }
    
    .features-divider:not(.collapsed) + .features-list {
        opacity: 1;
        margin-top: 10px;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    /* Enterprise Scroll Button - Mobile */
    .enterprise-scroll-button-container {
        bottom: 20px;
        right: 20px;
    }
    
    .enterprise-scroll-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* ===== ADDONS SECTION MOBILE STYLING ===== */
    
    /* Addons Row - stack cards vertically */
    .addons-row {
        flex-direction: column;
    }
    
    /* Additional Pages card - match other cards on mobile */
    .addon-glass-card[data-addon="pages"] {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }
    
    .addon-glass-card[data-addon="pages"] .bg {
        width: calc(100% - 10px);
        height: auto;
        min-height: calc(100% - 10px);
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    /* Reset absolute positioning on mobile */
    .addon-glass-card[data-addon="pages"] .addon-card-title,
    .addon-glass-card[data-addon="pages"] .addon-card-description,
    .addon-glass-card[data-addon="pages"] .addon-card-price,
    .addon-glass-card[data-addon="pages"] .addon-card-footer {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        text-align: left;
        max-width: 100%;
        white-space: normal;
    }
    
    .addon-glass-card[data-addon="pages"] .addon-card-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .addon-glass-card[data-addon="pages"] .addon-card-description {
        margin-bottom: 15px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
    }
    
    .addon-glass-card[data-addon="pages"] .addon-card-footer {
        width: 100%;
        align-items: flex-start;
    }
    
    .addon-glass-card[data-addon="pages"] .addon-card-title {
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Fast Track Card - Mobile */
    .fast-track-section {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .addon-fast-track-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 130px;
        padding: 20px;
    }
    
    .addon-fast-track-card .addon-card-header {
        margin-bottom: 10px;
        transform: none;
    }
    
    .addon-fast-track-card .addon-card-title {
        font-size: 1.1rem;
    }
    
    .addon-fast-track-card .addon-card-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        transform: none;
    }
    
    .addon-fast-track-card .addon-card-footer {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        margin-top: 10px;
    }
    
    .addon-fast-track-card.selected .addon-card-header,
    .addon-fast-track-card.selected .addon-card-description,
    .addon-fast-track-card.selected .addon-card-footer {
        transform: none;
    }
    
    /* Media Services Card - Mobile */
    .addon-media-card {
        height: auto;
        margin-bottom: 30px;
    }
    
    .flip-card-inner {
        height: auto;
        position: relative;
    }
    
    /* Use the front card to determine height */
    .flip-card-front {
        position: relative;
        height: auto;
        padding: 20px;
    }
    
    .flip-card-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
    }
    
    /* When flipped, swap which one is relative */
    .flip-card-inner.flipped .flip-card-front {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .flip-card-inner.flipped .flip-card-back {
        position: relative;
        height: auto;
    }
    
    /* Media services list - single column */
    .media-services-list {
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-y: visible;
        padding-right: 0;
    }
    
    .media-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
    }
    
    .media-service-item .service-info {
        width: 100%;
    }
    
    .media-service-item .quantity-selector {
        width: 100%;
        justify-content: flex-start;
    }
}

