/* ============================================================
   🎨 SERVICE CARDS - Master Styles
   Change ANYTHING here to update ALL cards globally
   ============================================================ */

/* ============================================================
   CONFIGURATION VARIABLES - Change these to restyle ALL cards
   ============================================================ */
:root {
    /* === CARD CONTAINER === */
    --card-radius: 24px;
    --card-shadow: 0 4px 16px rgba(0,0,0,0.04);
    --card-hover-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
    --card-hover-transform: translateY(-6px);
    --card-border: 1px solid #eef2f6;
    
    /* === COLORS === */
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-dark: #0f172a;
    --text-mid: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    
    /* === FONTS === */
    --font-title: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* === CARD BADGE === */
    --badge-radius: 40px;
    --badge-font-size: 9px;
    --badge-bg: #f1f5f9;
    --badge-color: #64748b;
    
    /* === BUTTON === */
    --btn-radius: 12px;
    --btn-bg: #3b82f6;
    --btn-color: white;
    --btn-hover-scale: 1.02;
}

/* ============================================================
   CARD BASE - Change these to change ALL cards
   ============================================================ */
.card-base {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    position: relative;
    border: var(--card-border);
}

.card-base:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--card-hover-shadow);
}

/* ============================================================
   CARD BODY - Change padding/fonts here
   ============================================================ */
.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-title);
    margin: 8px 0 4px;
}

.card-body .subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.card-body .best-for {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    padding: 2px 10px;
    background: #eff6ff;
    border-radius: 20px;
    display: inline-block;
}

/* ============================================================
   DELIVERABLES - Change bullet colors here
   ============================================================ */
.card-body .deliverables {
    list-style: none;
    margin: 8px 0 14px;
    padding: 0;
}

.card-body .deliverables li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #334155;
    padding: 4px 0;
    border-bottom: 1px solid #f8fafc;
}

.card-body .deliverables li:last-child {
    border-bottom: none;
}

.card-body .deliverables li i {
    color: var(--success);
    font-size: 10px;
}

/* ============================================================
   PRICING - Change price styles here
   ============================================================ */
.card-body .pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-body .pricing .price {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}

.card-body .pricing .price-original {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.card-body .pricing .period {
    font-size: 11px;
    color: #94a3b8;
    margin-left: auto;
}

/* ============================================================
   COUPON BADGE - Change coupon styles here
   ============================================================ */
.card-body .pricing .coupon-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-flash {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 40px;
    margin-bottom: 4px;
    animation: pulseCoupon 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulseCoupon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================
   ICON - Change icon styles here
   ============================================================ */
.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-wrap.blue { background: #eff6ff; color: var(--primary); }
.icon-wrap.teal { background: #ccfbf1; color: #0d9488; }
.icon-wrap.green { background: #d1fae5; color: #10b981; }

/* ============================================================
   BADGE - Change badge styles here
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--badge-radius);
    font-size: var(--badge-font-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--badge-bg);
    color: var(--badge-color);
    white-space: nowrap;
}

.badge.green { background: #d1fae5; color: #059669; }
.badge.popular { background: var(--primary-gradient); color: white; }

/* ============================================================
   BUTTON - Change button styles here
   ============================================================ */
.card-body .btn {
    width: 100%;
    padding: 10px;
    border-radius: var(--btn-radius);
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--btn-bg);
    color: var(--btn-color);
}

.card-body .btn:hover {
    transform: scale(var(--btn-hover-scale));
}

/* ============================================================
   CARD VARIANTS - Change highlight styles here
   ============================================================ */

/* REGULAR */
.card-regular {
    background: var(--white);
    border: 1px solid #eef2f6;
    box-shadow: var(--card-shadow);
}

.card-regular:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08);
}

/* GOOD VALUE */
.card-good-value {
    background: #f8faff;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 4px 16px rgba(59,130,246,0.06);
}

.card-good-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.card-good-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(59,130,246,0.15);
}

.good-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 2px 10px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #93c5fd;
    width: fit-content;
    margin-bottom: 4px;
}

/* BEST CHOICE */
.card-best-choice {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px -8px rgba(59,130,246,0.15);
    transform: translateY(-2px);
}

.card-best-choice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.card-best-choice:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(59,130,246,0.2);
}

.card-best-choice .icon-wrap {
    background: #eff6ff !important;
    border: 1px solid var(--primary) !important;
}

.card-best-choice .icon-wrap i { color: var(--primary) !important; }
.card-best-choice .best-for { background: #eff6ff !important; color: #1d4ed8 !important; }

.best-choice-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-gradient);
    color: white;
    padding: 3px 12px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.2);
    animation: pulseBadge 2s ease-in-out infinite;
    width: fit-content;
    margin-bottom: 4px;
}

/* PREMIUM */
.card-premium {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px -8px rgba(59,130,246,0.15);
    transform: translateY(-2px);
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(59,130,246,0.2);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    padding: 3px 12px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.2);
    width: fit-content;
    margin-bottom: 4px;
}

/* ============================================================
   LINKEDIN CARD - Change LinkedIn card styles here
   ============================================================ */
.card-linkedin {
    background: #0a66c2;
    color: white;
    border: none !important;
}

.card-linkedin:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px -12px rgba(10, 102, 194, 0.4);
}

.card-linkedin .card-body {
    padding: 24px;
}

.card-linkedin .badge {
    background: rgba(255,255,255,0.15);
    color: white;
}

.card-linkedin h3 {
    color: white;
}

.card-linkedin .subtitle {
    color: rgba(255,255,255,0.7);
}

.card-linkedin .deliverables li {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.1);
}

.card-linkedin .deliverables li i {
    color: #8bc34a;
}

.card-linkedin .pricing {
    border-color: rgba(255,255,255,0.15);
}

.card-linkedin .pricing .price {
    color: white;
}

.card-linkedin .pricing .period {
    color: rgba(255,255,255,0.5);
}

.card-linkedin .best-for {
    background: rgba(255,255,255,0.15);
    color: white;
}

.card-linkedin .btn {
    background: white;
    color: #0a66c2;
}

.card-linkedin .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card-linkedin .linkedin-logo {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0a66c2;
    flex-shrink: 0;
}

.card-linkedin .linkedin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.card-linkedin .best-choice-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 3px 12px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 4px;
}

/* ============================================================
   JOB APP COUNT - Change job card styles here
   ============================================================ */
.job-app-count {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 8px;
    margin-bottom: 12px;
    border: 1px dashed #e2e8f0;
}

.job-app-count .app-number {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    display: block;
    line-height: 1.1;
}

.job-app-count .app-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-best-choice .job-app-count {
    background: #eff6ff;
    border-color: #93c5fd;
}

.card-best-choice .job-app-count .app-number {
    color: #1d4ed8;
}

.card-premium .job-app-count {
    background: #eff6ff;
    border-color: #93c5fd;
}

.card-premium .job-app-count .app-number {
    color: #1d4ed8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================
   RESPONSIVE - Change mobile styles here
   ============================================================ */
@media (max-width: 768px) {
    .card-body {
        padding: 18px;
    }
    
    .card-body .pricing .price {
        font-size: 22px;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 16px;
    }
    
    .card-body h3 {
        font-size: 16px;
    }
    
    .card-body .pricing .price {
        font-size: 20px;
    }
    
    .card-body .btn {
        font-size: 12px;
        padding: 8px;
    }
    
    .icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   🎨 SERVICE CARDS - Master Styles
   ============================================================ */

/* ===== CARD BASE ===== */
.card-base {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    cursor: pointer;
    position: relative;
    border: 1px solid #eef2f6;
}

.card-base:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
}

/* ===== CARD BODY ===== */
.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 8px 0 4px;
}

.card-body .subtitle {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.card-body .best-for {
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 10px;
    padding: 2px 10px;
    background: #eff6ff;
    border-radius: 20px;
    display: inline-block;
}

/* ===== DELIVERABLES ===== */
.card-body .deliverables {
    list-style: none;
    margin: 8px 0 14px;
    padding: 0;
}

.card-body .deliverables li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #334155;
    padding: 4px 0;
    border-bottom: 1px solid #f8fafc;
}

.card-body .deliverables li:last-child {
    border-bottom: none;
}

.card-body .deliverables li i {
    color: #22c55e;
    font-size: 10px;
}

/* ===== PRICING ===== */
.card-body .pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-body .pricing .price {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.card-body .pricing .period {
    font-size: 11px;
    color: #94a3b8;
    margin-left: auto;
}

/* ===== BUTTON ===== */
.card-body .btn {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
}

.card-body .btn:hover {
    transform: scale(1.02);
}

/* ===== ICON WRAP ===== */
.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-wrap.blue { background: #eff6ff; color: #3b82f6; }
.icon-wrap.teal { background: #ccfbf1; color: #0d9488; }
.icon-wrap.green { background: #d1fae5; color: #10b981; }

/* ===== CARD TOP ===== */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: #f1f5f9;
    color: #64748b;
    white-space: nowrap;
}

.badge.green { background: #d1fae5; color: #059669; }
.badge.popular { background: linear-gradient(135deg, #3b82f6, #8b5cf6); color: white; }

/* ===== REGULAR CARD ===== */
.card-regular {
    background: #ffffff;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.card-regular:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08);
}

/* ===== GOOD VALUE CARD ===== */
.card-good-value {
    background: #f8faff;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 4px 16px rgba(59,130,246,0.06);
}

.card-good-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    border-radius: 24px 24px 0 0;
}

.card-good-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(59,130,246,0.15);
}

.good-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 2px 10px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #93c5fd;
    width: fit-content;
    margin-bottom: 4px;
}

/* ===== BEST CHOICE CARD ===== */
.card-best-choice {
    background: #ffffff;
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 24px -8px rgba(59,130,246,0.15);
    transform: translateY(-2px);
}

.card-best-choice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 24px 24px 0 0;
}

.card-best-choice:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(59,130,246,0.2);
}

.card-best-choice .icon-wrap {
    background: #eff6ff !important;
    border: 1px solid #3b82f6 !important;
}

.card-best-choice .icon-wrap i { color: #3b82f6 !important; }
.card-best-choice .best-for { background: #eff6ff !important; color: #1d4ed8 !important; }

.best-choice-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 3px 12px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.2);
    animation: pulseBadge 2s ease-in-out infinite;
    width: fit-content;
    margin-bottom: 4px;
}

/* ===== LINKEDIN CARD ===== */
.card-linkedin {
    background: #0a66c2;
    color: white;
    border: none !important;
}

.card-linkedin:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px -12px rgba(10, 102, 194, 0.4);
}

.card-linkedin .card-body {
    padding: 24px;
}

.card-linkedin .badge {
    background: rgba(255,255,255,0.15);
    color: white;
}

.card-linkedin h3 {
    color: white;
}

.card-linkedin .subtitle {
    color: rgba(255,255,255,0.7);
}

.card-linkedin .deliverables li {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.1);
}

.card-linkedin .deliverables li i {
    color: #8bc34a;
}

.card-linkedin .pricing {
    border-color: rgba(255,255,255,0.15);
}

.card-linkedin .pricing .price {
    color: white;
}

.card-linkedin .pricing .period {
    color: rgba(255,255,255,0.5);
}

.card-linkedin .best-for {
    background: rgba(255,255,255,0.15);
    color: white;
}

.card-linkedin .btn {
    background: white;
    color: #0a66c2;
}

.card-linkedin .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card-linkedin .linkedin-logo {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0a66c2;
    flex-shrink: 0;
}

.card-linkedin .linkedin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .card-body {
        padding: 18px;
    }
    
    .card-body .pricing .price {
        font-size: 22px;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 16px;
    }
    
    .card-body h3 {
        font-size: 16px;
    }
    
    .card-body .pricing .price {
        font-size: 20px;
    }
    
    .card-body .btn {
        font-size: 12px;
        padding: 8px;
    }
    
    .icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr !important;
    }
}