/* ==============================================
   ASCENDROOT - Partner Portal (Mobile App Style)
   ============================================== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    padding-bottom: 0;
    margin: 0;
    overflow-x: hidden;
}

/* App Container */
.app-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    display: block;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 100px;
}

/* Header */
.app-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.app-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-header .brand {
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

/* User Info (In Header) */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s ease;
}
.app-header .text-white {
    font-size: 16px;
    font-weight: bold;
}
.app-header a {
    text-decoration: none;
}
.balance-card {
    text-decoration: none;
    display: block;
}
.section-title-left {
    margin-bottom: 15px;
    text-align: left;
}
.section-title-center {
    text-align: center;
}

.user-avatar:hover {
    background: rgba(255,255,255,0.45);
    transform: scale(1.1);
}

.app-header a {
    transition: all 0.2s ease;
}

.app-header a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* ==============================================
   NEW STYLES FROM REFERENCE DESIGN
   ============================================== */

/* Hero Cards Section */
.hero-cards-section {
    padding: 0 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-cards-container {
    overflow: hidden;
}

.hero-cards-track {
    display: flex;
    gap: 15px;
    transition: transform 0.6s ease-in-out;
}

.hero-card {
    flex-shrink: 0;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.15);
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Top Balance Card */
.balance-card {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    margin: 15px;
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.35);
    transition: transform 0.2s ease;
}

.balance-card:hover {
    transform: translateY(-2px);
}

/* Beautiful gradient overlay with circles */
.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.balance-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.balance-card .balance-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.balance-card .balance-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.balance-card .wallet-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.15) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.balance-card .balance-text h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.balance-card .balance-text .amount {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.balance-card .add-lead-btn {
    background: white;
    color: #059669;
    border: none;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.balance-card .add-lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.balance-card .add-lead-btn:active {
    transform: translateY(0);
}

.balance-card .total-earning {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.balance-card .total-earning .label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.balance-card .total-earning .amount {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Offer Slider Section */
.offer-slider-section {
    padding: 0 15px;
    margin-bottom: 20px;
}

.offer-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offer-slider::-webkit-scrollbar {
    display: none;
}

.offer-card {
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
    scroll-snap-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.offer-card .offer-title {
    font-size: 28px;
    font-weight: 800;
    color: #4c1d95;
    margin-bottom: 5px;
}

.offer-card .offer-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.offer-card .offer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.offer-card .offer-tag {
    background: rgba(255,255,255,0.85);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    border: 2px dashed #fbbf24;
}

.offer-card .offer-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #dc2626;
    color: white;
    padding: 15px 10px;
    border-radius: 50%;
    font-weight: 800;
    text-align: center;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.offer-card .offer-badge .badge-small {
    font-size: 11px;
}

.offer-card .offer-badge .badge-big {
    font-size: 24px;
}

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

.offer-card .offer-footer-text {
    font-size: 14px;
    color: #4c1d95;
    font-weight: 600;
}

.offer-card .check-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

/* SELL & EARN Section */
.sell-earn-section {
    padding: 15px;
}

.sell-earn-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sell-earn-title .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c4b5fd, transparent);
}

.sell-earn-title .text {
    font-size: 20px;
    font-weight: 800;
    color: #4c1d95;
    text-transform: uppercase;
}

.sell-earn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sell-earn-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.sell-earn-card .card-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.sell-earn-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.sell-earn-card .card-earning {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    margin: -20px -20px -20px -20px;
    margin-top: 15px;
}

/* ==============================================
   EXISTING STYLES (Updated)
   ============================================== */

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.stat-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.stat-card .count {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.stat-card .label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* Provide Service & Earn Section */
.services-section {
    padding: 20px 0 5px;
}

.services-header {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 15px;
}

.services-title {
    font-size: 22px;
    font-weight: 800;
    color: #4c1d95;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.services-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.services-slider-container {
    overflow: hidden;
    padding: 0 5px;
}

.services-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex-shrink: 0;
    width: 160px;
    background: white;
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(102, 126, 234, 0.1);
    scroll-snap-align: start;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.18);
}

.service-card:active {
    transform: translateY(-1px);
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.service-card .service-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.service-card .service-commission {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.service-card .service-commission span {
    color: #667eea;
    font-weight: 800;
    font-size: 18px;
}

/* Quick Actions */
.quick-actions {
    padding: 15px;
}

.quick-actions-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.action-btn {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 14px 6px;
    text-align: center;
    text-decoration: none;
    color: #0f172a;
    transition: transform 0.2s;
    display: block;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 22px;
}

.action-btn span {
    font-size: 11px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    color: #4c1d95;
}

.actions-extra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.actions-extra.hidden {
    display: none;
}

.show-more-btn {
    width: 50px;
    height: 50px;
    margin: 16px auto 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.show-more-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.rotated i {
    transform: rotate(180deg);
}

/* Banner */
.banner-section {
    padding: 0 15px 15px;
}

.banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.banner .banner-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
}

.banner h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.banner p {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 12px;
}

.banner .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: white;
    box-shadow: 0 -6px 30px rgba(102, 126, 234, 0.15);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 8px 0 12px;
    z-index: 1000;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #64748b;
    padding: 8px 4px;
}

.bottom-nav a.active {
    color: #667eea;
}

.bottom-nav a i {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
}

.bottom-nav a span {
    font-size: 11px;
    font-weight: 600;
    display: block;
}

/* Center Lead Plus Button */
.bottom-nav .center-btn {
    position: relative;
    flex: 0 0 auto;
    margin-top: -24px;
}

.bottom-nav .center-btn .fab-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    border: 4px solid white;
    animation: pulse 2s infinite;
}

.bottom-nav .center-btn .fab-wrapper i {
    color: white;
    font-size: 28px;
    margin-bottom: 0;
}

.bottom-nav .center-btn span {
    color: #667eea;
    margin-top: 4px;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(102, 126, 234, 0.75);
    }
}

/* Referral Section */
.referral-section {
    padding: 15px;
}

.referral-box {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.referral-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.referral-input {
    display: flex;
    gap: 10px;
}

.referral-input input {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 12px;
}

.referral-input button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    font-weight: 600;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
}

/* Gradient Colors */
.gradient-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.gradient-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); color: white; }
.gradient-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; }
.gradient-orange { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; }
.gradient-red { background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%); color: white; }
.gradient-pink { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); color: white; }
.gradient-yellow { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); color: white; }
.gradient-indigo { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.modal-content {
    background: white;
    width: 100%;
    max-width: 480px;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}
.form-group {
    margin-bottom: 16px;
}
.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    background: white;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #667eea;
}
.form-textarea {
    resize: vertical;
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.notification-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}
.notification-card .card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.notification-card .card-text {
    font-size: 12px;
    color: #64748b;
}
.notification-card small {
    font-size: 10px;
    color: #94a3b8;
}
.quick-actions-card.padded {
    padding: 20px;
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
}
.stat-label {
    font-size: 12px;
    color: #64748b;
}
.btn-primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}
.profile-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.avatar-edit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    cursor: pointer;
}
.avatar-edit-btn i {
    color: white;
    font-size: 12px;
}
.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
}
.profile-id {
    font-size: 13px;
    color: #64748b;
}
.last-login-label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
}
.last-login-value {
    font-size: 14px;
    font-weight: bold;
    color: #667eea;
}
.settings-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
}
.gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}
.danger-bg {
    background: #fee2e2;
    color: #dc2626;
}
.btn-logout {
    border-radius: 15px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}

/* Package Styles for service.php */
.package-item {
    border-bottom: 1px solid #e5e7eb;
}
.package-item:last-child {
    border-bottom: none;
}
.package-question {
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.package-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.package-answer.open {
    max-height: 2000px;
    padding-bottom: 16px;
}
.package-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chevron {
    transition: transform 0.3s ease;
    color: #6c757d;
}
.chevron.rotate {
    transform: rotate(180deg);
}
.package-feature {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}
.package-feature i {
    color: #10b981;
    margin-right: 10px;
}
.package-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}
.popular-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    margin-left: 8px;
}
