

.page.page-id-75961 .inner-page-title-section{
    display: none;
}
.page.page-id-75961 .inner-page-content-section{
    padding-top: 0;
}
.page.page-id-75961 .inner-page-content-section{
    padding-top: 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}


/* Admin Demo Page Styles */
.admin-demo-page {
    background: #ffffff;
    min-height: 100vh;
}

/* Hero Section */
.admin-demo-page .demo-hero-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 80px 0 100px;
    position: relative;
}

.admin-demo-page .demo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(0, 150, 255, 0.03) 2px, transparent 0);
    background-size: 40px 40px;
}

.admin-demo-page .demo-hero-section .container {
    position: relative;
    z-index: 1;
}

.admin-demo-page .demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.admin-demo-page .demo-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.admin-demo-page .demo-header p {
    font-size: 20px;
    color: #5f6c7b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* User Info Form */
.admin-demo-page .user-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 150, 255, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.admin-demo-page .user-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0096ff 0%, #00d4ff 50%, #0096ff 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.admin-demo-page .user-info-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-demo-page .user-info-section h2 i {
    color: #0096ff;
    font-size: 28px;
}

.admin-demo-page .user-info-section > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.admin-demo-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-demo-page .form-group {
    margin-bottom: 0;
    position: relative;
}

.admin-demo-page .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.admin-demo-page .form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.admin-demo-page .form-group input,
.admin-demo-page .form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #0a0a0a;
    font-weight: 500;
}

.admin-demo-page .form-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.admin-demo-page .form-group input:hover {
    border-color: #cbd5e1;
}

.admin-demo-page .form-group input:focus,
.admin-demo-page .form-group select:focus {
    outline: none;
    border-color: #0096ff;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1);
    transform: translateY(-2px);
}

.admin-demo-page .form-group.has-icon input {
    padding-left: 48px;
}

.admin-demo-page .form-group .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 13px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.admin-demo-page .form-group input:focus ~ .input-icon {
    color: #0096ff;
}

/* Package Selection */
.admin-demo-page .package-section {
    padding: 60px 0px 0 0;
    margin-bottom: 40px;
}

.admin-demo-page .package-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 8px;
    text-align: center;
}

.admin-demo-page .package-section > p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 48px;
    text-align: center;
}

.admin-demo-page .packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.admin-demo-page .package-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.admin-demo-page .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.admin-demo-page .package-card.selected .package-overlay {
    opacity: 1;
}

/* Selected State Shadows - Color-Specific */
.admin-demo-page .package-card.pkg-plus.selected {
    box-shadow: 0 16px 48px rgba(0, 150, 255, 0.3);
    border: 2px solid #0096ff;
}

.admin-demo-page .package-card.pkg-pro.selected {
    box-shadow: 0 16px 48px rgba(255, 200, 0, 0.3);
    border: 2px solid #ffc800;
}

.admin-demo-page .package-card.pkg-virtual.selected {
    box-shadow: 0 16px 48px rgba(255, 72, 93, 0.3);
    border: 2px solid #FF485D;
}

.admin-demo-page .package-card.pkg-all.selected {
    box-shadow: 0 16px 48px rgba(0, 185, 118, 0.3);
    border: 2px solid #00B976;
}

.admin-demo-page .package-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.admin-demo-page .package-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.admin-demo-page .package-card:hover .package-image img {
    transform: scale(1.05);
}

.admin-demo-page .package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.admin-demo-page .package-radio {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-demo-page .package-radio input[type="radio"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
}

.admin-demo-page .package-radio input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.admin-demo-page .package-card.pkg-plus .package-radio input[type="radio"]:checked {
    border-color: #0096ff;
}

.admin-demo-page .package-card.pkg-plus .package-radio input[type="radio"]:checked::before {
    background: #0096ff;
}

.admin-demo-page .package-card.pkg-pro .package-radio input[type="radio"]:checked {
    border-color: #ffc800;
}

.admin-demo-page .package-card.pkg-pro .package-radio input[type="radio"]:checked::before {
    background: #ffc800;
}

.admin-demo-page .package-card.pkg-virtual .package-radio input[type="radio"]:checked {
    border-color: #FF485D;
}

.admin-demo-page .package-card.pkg-virtual .package-radio input[type="radio"]:checked::before {
    background: #FF485D;
}

.admin-demo-page .package-card.pkg-all .package-radio input[type="radio"]:checked {
    border-color: #00B976;
}

.admin-demo-page .package-card.pkg-all .package-radio input[type="radio"]:checked::before {
    background: #00B976;
}

.admin-demo-page .package-content {
    padding: 24px;
}

.admin-demo-page .package-name {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.admin-demo-page .package-addons-count-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-demo-page .package-addons-count-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    transition: all 0.3s ease;
    z-index: 0;
}

.admin-demo-page .package-addons-count-wrapper:hover::before {
    opacity: 0.15;
}

.admin-demo-page .package-addons-count {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.admin-demo-page .package-addons-count i {
    font-size: 16px;
}

.admin-demo-page .view-addons-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.admin-demo-page .package-addons-count-wrapper:hover .view-addons-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* Modal Overlay */
.admin-demo-page .addons-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-demo-page .addons-modal-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.admin-demo-page .package-addons-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.admin-demo-page .package-addons-modal.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.admin-demo-page .addons-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 2px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.admin-demo-page .addons-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.admin-demo-page .close-modal-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.admin-demo-page .close-modal-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

.admin-demo-page .addons-modal-body {
    padding: 24px 32px;
    max-height: calc(80vh - 100px);
    overflow-y: auto;
}

.admin-demo-page .package-addons-list {
    display: block;
}

.admin-demo-page .package-addons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.admin-demo-page .package-addons-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-demo-page .package-addons-list li:hover {
    background: linear-gradient(135deg, #e6f4ff 0%, #dbeafe 100%);
    transform: translateX(4px);
}

.admin-demo-page .package-addons-list li i {
    color: #22c55e;
    font-size: 14px;
    flex-shrink: 0;
}

.admin-demo-page .package-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Package Color Themes */

.admin-demo-page .package-card.pkg-plus .package-image {
    background: rgba(0, 150, 255, 0.1);
}

.admin-demo-page .package-card.pkg-plus .package-addons-count i {
    color: #0096ff;
}

.admin-demo-page .package-card.pkg-plus .package-addons-count {
    color: #0096ff;
}

.admin-demo-page .package-card.pkg-plus .package-addons-count-wrapper::before {
    background: linear-gradient(90deg, #0096ff 0%, transparent 100%);
}

.admin-demo-page .package-card.pkg-plus .package-addons-count-wrapper:hover .view-addons-icon {
    color: #0096ff;
}

.admin-demo-page .package-card.pkg-pro .package-image {
    background: rgba(255, 200, 0, 0.1);
}

.admin-demo-page .package-card.pkg-pro .package-addons-count i {
    color: #d97706;
}

.admin-demo-page .package-card.pkg-pro .package-addons-count {
    color: #d97706;
}

.admin-demo-page .package-card.pkg-pro .package-addons-count-wrapper::before {
    background: linear-gradient(90deg, #ffc800 0%, transparent 100%);
}

.admin-demo-page .package-card.pkg-pro .package-addons-count-wrapper:hover .view-addons-icon {
    color: #d97706;
}

.admin-demo-page .package-card.pkg-virtual .package-image {
    background: rgba(255, 72, 93, 0.1);
}

.admin-demo-page .package-card.pkg-virtual .package-addons-count i {
    color: #dc2626;
}

.admin-demo-page .package-card.pkg-virtual .package-addons-count {
    color: #dc2626;
}

.admin-demo-page .package-card.pkg-virtual .package-addons-count-wrapper::before {
    background: linear-gradient(90deg, #FF485D 0%, transparent 100%);
}

.admin-demo-page .package-card.pkg-virtual .package-addons-count-wrapper:hover .view-addons-icon {
    color: #dc2626;
}

.admin-demo-page .package-card.pkg-all .package-image {
    background: rgba(0, 185, 118, 0.1);
}

.admin-demo-page .package-card.pkg-all .package-addons-count i {
    color: #059669;
}

.admin-demo-page .package-card.pkg-all .package-addons-count {
    color: #059669;
}

.admin-demo-page .package-card.pkg-all .package-addons-count-wrapper::before {
    background: linear-gradient(90deg, #00B976 0%, transparent 100%);
}

.admin-demo-page .package-card.pkg-all .package-addons-count-wrapper:hover .view-addons-icon {
    color: #059669;
}

/* Popular Badge */
.admin-demo-page .popular-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: #ffffff;
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Custom Addons Card */
.admin-demo-page .custom-addons-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-top: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.admin-demo-page .custom-addons-card:hover {
    border-color: #0096ff;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.1);
}

.admin-demo-page .custom-addons-card.active {
    border-color: #0096ff;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08) 0%, rgba(0, 150, 255, 0.03) 100%);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.15);
}

/* Position the radio button to cover the entire card */
.admin-demo-page .custom-addons-radio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.admin-demo-page .custom-addons-radio input[type="radio"] {
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    opacity: 0;
    position: relative;
}

.admin-demo-page .custom-addons-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.admin-demo-page .custom-addons-card:hover .custom-addons-icon {
    transform: scale(1.05);
}

.admin-demo-page .custom-addons-card.active .custom-addons-icon {
    background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
}

.admin-demo-page .custom-addons-content {
    flex: 1;
}

.admin-demo-page .custom-addons-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 6px 0;
}

.admin-demo-page .custom-addons-content p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.admin-demo-page .custom-addons-checkbox {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #ffffff;
}

.admin-demo-page .custom-addons-card.active .custom-addons-checkbox {
    background: #0096ff;
    border-color: #0096ff;
}

.admin-demo-page .checkbox-indicator {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 0px solid transparent;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.admin-demo-page .custom-addons-card.active .checkbox-indicator {
    width: 6px;
    height: 12px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg) translateY(-2px);
}

/* Addons Section */
.admin-demo-page .addons-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.admin-demo-page .addons-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.admin-demo-page .addons-section > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

/* Addons Header */
.admin-demo-page .addons-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.admin-demo-page .addons-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

/* Search Box */
.admin-demo-page .addon-search-wrapper {
    position: relative;
    min-width: 280px;
    max-width: 350px;
}

.admin-demo-page .addon-search-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.admin-demo-page .addon-search-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0a0a0a;
    transition: all 0.3s ease;
    background: #ffffff;
}

.admin-demo-page .addon-search-input:focus {
    outline: none;
    border-color: #0096ff;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 2px 8px rgba(0, 150, 255, 0.1);
}

.admin-demo-page .addon-search-input::placeholder {
    color: #94a3b8;
}

.admin-demo-page .addon-tab {
    padding: 12px 24px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-demo-page .addon-tab.active {
    background: #0096ff;
    color: #ffffff;
    border-color: #0096ff;
}

.admin-demo-page .addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.admin-demo-page .addon-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-demo-page .addon-item:hover {
    border-color: #0096ff;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.03) 0%, rgba(0, 150, 255, 0.01) 100%);
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.12);
}

.admin-demo-page .addon-item.selected {
    border-color: #0096ff;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08) 0%, rgba(0, 150, 255, 0.03) 100%);
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.2);
}

.admin-demo-page .addon-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8fafc;
}

.admin-demo-page .addon-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.admin-demo-page .addon-item.selected input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.admin-demo-page .addon-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.admin-demo-page .addon-item:hover .addon-icon {
    background: linear-gradient(135deg, #e6f4ff 0%, #dbeafe 100%);
    transform: scale(1.05);
}

.admin-demo-page .addon-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-demo-page .addon-checkbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0096ff;
}

.admin-demo-page .addon-info {
    flex: 1;
    text-align: left;
}

.admin-demo-page .addon-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.3;
    padding-right: 30px;
}

.admin-demo-page .addon-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #fef3c7;
    color: #d97706;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 6px;
}

.admin-demo-page .addon-status {
    font-size: 13px;
    color: #64748b;
}

.admin-demo-page .included-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

/* Submit Section */
.admin-demo-page .submit-section {
    text-align: center;
}

.admin-demo-page .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.3);
}

.admin-demo-page .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 150, 255, 0.4);
}

.admin-demo-page .submit-btn i {
    font-size: 20px;
}
/* Custom Radio Buttons Styling */
.form-groupp {
    margin-bottom: 16px;
}

.form-groupp p {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-groupp input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-right: 10px;
    flex-shrink: 0;
}

.form-groupp input[type="radio"]:hover {
    border-color: #0096ff;
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
}

.form-groupp input[type="radio"]:checked {
    border-color: #0096ff;
    background: #ffffff;
}

.form-groupp input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0096ff;
}

.form-groupp label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;
    margin-bottom: 0px !important;
}

.form-groupp label:hover {
    color: #0096ff;
}

/* Custom Checkbox Styling */
.form-groupp input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-right: 10px;
    flex-shrink: 0;
}

.form-groupp input[type="checkbox"]:hover {
    border-color: #0096ff;
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
}

.form-groupp input[type="checkbox"]:checked {
    border-color: #0096ff;
    background: #0096ff;
}

.form-groupp input[type="checkbox"]:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.form-groupp .required {
    color: #ef4444;
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 767px) {
    .admin-demo-page .demo-hero-section {
        padding: 60px 0;
    }

    .admin-demo-page .demo-header h1 {
        font-size: 36px;
    }

    .admin-demo-page .demo-header p {
        font-size: 16px;
    }

    .admin-demo-page .user-info-section,
    .admin-demo-page .package-section,
    .admin-demo-page .addons-section {
        padding: 24px;
    }

    .admin-demo-page .form-row {
        grid-template-columns: 1fr;
    }

    .admin-demo-page .packages-grid {
        grid-template-columns: 1fr;
    }

    .admin-demo-page .addons-grid {
        grid-template-columns: 1fr;
    }

    .admin-demo-page .addons-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-demo-page .addons-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        flex: none;
        width: 100%;
    }

    .admin-demo-page .addon-search-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
}